Search code examples
androidandroid-buttondouble-click

Android Preventing Double Click On A Button


What is the best way to prevent double clicks on a button in Android?


Solution

  • Disable the button with setEnabled(false) until it is safe for the user to click it again.