What is the best way to update the screen periodically? Technology Community › Category: Android › What is the best way to update the screen periodically? 0 Vote Up Vote Down VietMX Staff asked 4 years ago Use Handler. Timer on the other hand will execute on another thread so it cannot update the views. Handler handler = new Handler(); Runnable runnable = new Runnable() { public void run() { doStuff(); } };