Android Imageview auto scroll with an animation -
i have image(size 600 * 400) , imageview size (300 * 400).
i want load image , auto scroll left right (in 5 seconds) animation.
i try use "scrollto" , timer it's not good.
how smooth scroll imageview animation ?
thanks much.
did try use handler?
handler handler1 = new handler(); handler1.postdelayed(new runnable() { public void run() { "your code executed after 5 seconds" } }, 5000);
Comments
Post a Comment