Skip to content

Instantly share code, notes, and snippets.

@dodyw
Created September 12, 2013 06:34
Show Gist options
  • Save dodyw/6533680 to your computer and use it in GitHub Desktop.
Save dodyw/6533680 to your computer and use it in GitHub Desktop.
Android delay 5m
final Handler handler = new Handler();
handler.postDelayed(new Runnable() {
@Override
public void run() {
// Do something after 5s = 5000ms
Log.i("coba","JALANKAN BARIS INI");
}
}, 5000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment