Android: How to make launcher always open the main activity instead of child activity? (or otherwise)

前端 未结 2 1199
囚心锁ツ
囚心锁ツ 2021-02-06 00:39

I have activities A and B. The A is the one with LAUNCHER intent-filter (i.e. the activity that is started when we click the app icon on home screen).

A launches B usin

相关标签:
2条回答
  • 2021-02-06 00:40

    Well you should really have activity B initialize your resources too. But you can put android:clearTaskOnLaunch="true" in your manifest for activity A to have the launcher always go to that activity.

    0 讨论(0)
  • 2021-02-06 00:53

    Have you tried setting Flag FLAG_ACTIVITY_NEW_TASK while creating intent. In your case please try startActivity(new Intent(A.this, B.class).setFlags(Intent.FLAG_ACTIVITY_NEW_TASK))

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