Skip to content

Animation Category

César Ferreira edited this page Jun 17, 2014 · 4 revisions

Animation Utils.

QuickUtils.animation.__method__

Make a view Blink

A TextView:

 // Animate a text view
 TextView myText = (TextView) findViewById(R.id.textView1);
 myText = (TextView)QuickUtils.animation.blink(myText,250,20);

An ImageView:

 // Animate an image view
 ImageView imageView = (ImageView) findViewById(R.id.imageView);
 imageView = (ImageView)QuickUtils.animation.blink(imageView,250,20);

Or any kind of view..

Clone this wiki locally