Every 5 seconds, I want to call my webservice and get text (not images), then display it in my ImageAdapter. What would be the best way to accomplish this?
final Handler handler = new Handler(); final Runnable r = new Runnable() { public void run() { callWebservice(); } }; handler.postDelayed(r, 5000);