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

后端 未结 8 742
攒了一身酷
攒了一身酷 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 13:04

    Add the following code snipet to your Activity definition in Androidmanifest.xml

    android:launchMode = "singleTask"
    

提交回复
热议问题