I developed an application to display some text at defined intervals in the Android emulator screen. I am using the Handler class. Here is a snippet from my cod
Handler
new Handler().postDelayed(new Runnable() { public void run() { // do something... } }, 100);