The standard way to avoid multiple clicks is to save the last clicked time and avoid the other widget clicks within a preferred time private long lastPressesTime; @Override
Some times user may clicks multiple times on same widget, at that time App misleads and gives crassh/un expected behaviour to user.
We can resolve this by using the below code
public void onClick(View v) {
// Preventing multiple clicks, using threshold of 1 second
if (SystemClock.elapsedRealtime() - lastPressesTime < 1000) {
return;
}
lastPressesTime = SystemClock.elapsedRealtime();
switch(v.getId())
{
case R.id.widget1:
break;
case R.id.widget2:
break;
}
}
How To Set Text Color Programmatically Android TextView?
How can i comment inside xml file in android studio?
What are symmetric and asymmetric encryption in the way Android interacts with the server?
How to stop EditText focus at Activity startup in Android?
What is the Different Between val and var in Kotlin?
How to convert milli seconds to hours, minutes and seconds in Android?
Intent for Drive PDF Viewer - How to open PDF in Google Drive with intent
'constructor Handler()' is deprecated. Deprecated in Java, How to use Handler() class in And
Explain Fragment Life Cycle
What is Intent? What is the difference between an implicit intent and an explicit intent?
Android Studio project R can't find
How to start a new activity on button click
Permission denied for window type 2010 in Marshmallow device
What are the notifications available in android?
Android FCM not receiving notifications when app is removed from background
How to extract date and time from Long type variable in Kotlin on Android "
ERROR Android emulator gets killed when I try to run my application and choose an emulator it ret
How to get a contact image using a phone number in android?
Invoke-customs are only supported starting with android 0 --min-api 26
Is There A Way To Get The Source Code From An APK File? (or) How to decompile apk?
How to convert DP to Pixel and Pixel to Dp?
What is the difference between match_parent and fill_parent?
How to avoid multiple button click at same time in android?
How to Exit android app on back pressed?
Could not inflate Behavior subclass android.support.design.widget. BottomSheetBehavior How resolve
Key Points to remember while develop the Android Application.
How to install/ uninstall apk by command line ADB
Hide/Disable soft keyboard on Activity launch: Android
What is ANR in android?
Check List for Generate Signed APK Android
How to save activity State in Android?
How to check Android version?
How do I check in SQLite whether a table exists?
How to validate email address in Android with Kotlin?
ERR_ACCESS_DENIED in Android Webview with sdk 30
INSTALL_FAILED_INVALID_APK: Split lib_slice_9_apk was defined multiple times. It is possible that th
Duplicate files during packaging of APK” build.gradle issue: Android Studio
How to copy database from assets folder in android using kotlin
How do I generate random numbers in Dart?
How to find Android Device UDID or unique ID?