I need to show a certain number of images within a imageview dynamically, every few seconds, I need show in that imageview around 40 images, without onclick events or others, just go changing the image, preferably obtain them from a website, how can I start with this?
really would appreciate your help.
I need to show a certain number of images within a imageview dynamically, every
Share
Use a Handler to change the image each time delay you specify. Post a Runnable that changes the image with whatever time delay you wish.
Often people use an async-task for loading things online. I personally have never needed to, but you may need to load the images in an async task because it can slow up the UI and prompt a force-quit. Check on that though.