FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY not set in Nexus 10 (Android 4.4.2)
问题 I have a main activity A which will call another activity B whose oncreate() is mentioned below. When I press home button while in activity B and press recent apps, the flag FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY is never set. I'm using a samsung nexus 10 (Android 4.4.2). protected void onStart() { super.onCreate(savedInstanceState); if ((getIntent().getFlags() & Intent.FLAG_ACTIVITY_LAUNCHED_FROM_HISTORY) != 0) { //Call Main Activity. } else { //Continue creating this activity } } When I placed