How to prevent going back to the previous activity?

前端 未结 13 969
眼角桃花
眼角桃花 2020-11-27 09:10

When the BACK button is pressed on the phone, I want to prevent a specific activity from returning to its previous one.

Specifically, I have login and sign up screen

相关标签:
13条回答
  • 2020-11-27 10:15

    If you don't want to go back to all the activities on your application, you can use

    android:launchMode="singleTask"
    

    Learn more here: http://developer.android.com/guide/topics/manifest/activity-element.html

    0 讨论(0)
提交回复
热议问题