App completely restarting when launched by icon press in launcher

前端 未结 14 2138
灰色年华
灰色年华 2020-11-29 03:02

I\'m in the process of trying to make a release build of my first android app to send to a few testers. However, I ran into a problem with it. When you exit the app and then

14条回答
  •  悲&欢浪女
    2020-11-29 03:44

    Add this to your first activity:

    if (!isTaskRoot()) {
            finish();
            return;
    }     
    super.onCreate(savedInstanceState);
    

提交回复
热议问题