How to prevent the activity from loading twice on pressing the button

后端 未结 19 1940
情深已故
情深已故 2020-12-01 00:15

I am trying to prevent the activity from loading twice if I press the button twice instantly after the first click.

I have an activity which loads on click of a butt

19条回答
  •  -上瘾入骨i
    2020-12-01 00:18

    Use a flag variable set it to true, Check if its true just return else perform Activity Call.

    You can also use setClickable(false) one executing the Activity Call

    flg=false
     public void onClick(View view) { 
           if(flg==true)
             return;
           else
           { flg=true;
            // perform click}
        } 
    

提交回复
热议问题