Android Preventing Double Click On A Button

What is the best way to prevent double clicks on a button in Android? 52 Answers 52 saving a last click time when clicking will prevent this problem. i.e. private long mLastClickTime = 0; … // inside onCreate or so: findViewById(R.id.button).setOnClickListener(new OnClickListener() { @Override public void onClick(View v) { // mis-clicking prevention, using threshold of … Read more