Skip to content

Instantly share code, notes, and snippets.

@burnix
Created February 15, 2016 12:55
Show Gist options
  • Save burnix/00d5309dc09d4849a9d9 to your computer and use it in GitHub Desktop.
Save burnix/00d5309dc09d4849a9d9 to your computer and use it in GitHub Desktop.
public class Disabler {
public Disabler(final Button button, final long time){
button.setEnabled(false);
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
button.setEnabled(true);
}
}, time);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment