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

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -