How to prevent double code running by clicking twice fast to a button in Android

后端 未结 8 736
攒了一身酷
攒了一身酷 2021-01-17 12:42

If i click fast to my button in my Android app, it seems that code behind it runs twice. If i click my menu button twice the activity that has to be launch onclick just star

8条回答
  •  孤街浪徒
    2021-01-17 12:59

    You can use following code: btn.setEnabled(false);

    btn.setOnclickListener(new View.onClickListener(){
    
          public void onClick(View v) {
                btn.setEnabled(false);
    
          }
    });
    

提交回复
热议问题