Skip to content

Instantly share code, notes, and snippets.

@framundo
Created November 25, 2016 19:44
Show Gist options
  • Save framundo/517b2a54261184e5c920da6d54fe03e5 to your computer and use it in GitHub Desktop.
Save framundo/517b2a54261184e5c920da6d54fe03e5 to your computer and use it in GitHub Desktop.
Leak
private void timer() {
mHandler.postDelayed(new Runnable() {
@Override
public void run() {
// Do something
timer();
}
}, 5000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment