Giter VIP home page Giter VIP logo

countdownanimation's Introduction

Count Down Animation

This project includes the CountDownAnimation class and one Activity to test it.

How to use it

In TestActivity class you will find a complete example. Basically, you need to provide a TextView, in which the count down will be shown, and the starting count number. Then, simply call start().

CountDownAnimation countDownAnimation = new CountDownAnimation(textView, startCount);
countDownAnimation.start();

In addition, you can cancel the count down at any time by calling cancel().

Animation

By default, the class defines a fade out animation. It uses AlphaAnimation from 1 to 0. However, it is possible to modify that behaviour by setting another animation. For instance:

// Use scale animation
Animation scaleAnimation = new ScaleAnimation(1.0f, 0.0f, 1.0f, 0.0f,
  		Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
countDownAnimation.setAnimation(scaleAnimation);

Listener

If you want to do something after the count down finishes you can set a CountDownListener.

countDownAnimation.setCountDownListener(new CountDownListener() {
	@Override
	public void onCountDownEnd(CountDownAnimation animation) {
	  			
	}
});

Download

You can download the latest release. The apk file of the test application is provided.

Screenshots

TestActivity with default animation: Alpha Default animation

TestActivity with a set of animations: Scale + Alpha Set of animations: Scale + Alpha

countdownanimation's People

Contributors

ivanrf avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.