Search found 1 match

Go to advanced search

by androidbabbles1
20 Dec 2014 10:45
Forum: Skins
Topic: How To Start An Animated Bitmap
Replies: 12
Views: 7338

Re: How To Start An Animated Bitmap

Nice idea!Also You can add animation to your imageview like this:

TranslateAnimation anim = new TranslateAnimation( 0, xDest - originalPos[0] , 0, yDest - originalPos[1] );
anim.setDuration(1000);
anim.setFillAfter( true );
view.startAnimation(anim);

Go to advanced search