Running Android program, press the home key to return to the desktop, click on the program icon at the time to avoid restarting the program solution again
example: a android program contains two Activity, respectively mainactivity and otheractivity,activity for program startup. If the program is located in otheractivity, click home Key, the program returns to the desktop,
mainactivity, Instead of entering the home KEY moment the program is located in the otheractivity.
workaround:
modified in androidmanifest.xml, mainactivity launchmode, remove android:launchmode= " Singletask "boot mode.
Configuration code for Androidmanifest.xml
<application
android:icon= "@drawable/ic_launcher"
android:label= "@string/app_name"
android:theme= "@style/apptheme";
<activity
android:name= ". Mainactivity "
android:label= "@string/title_activity_ Main ";
&NBSP;<INTENT-FILTER>
<action Android:name= "Android.intent.action.MAIN"/>
<category Android:name= "Android.intent.category.LAUNCHER"/>
&NBSP;</INTENT-FILTER>
&NBSP;</ACTIVITY>
<activity
android:name= ". Otheractivity "
android:label= "@string/title_activity_ Other "android:launchmode=" Singletask ";
&NBSP;&NBSP;&NBSP;&NBSP;&NBSP;&NBSP;</ACTIVITY>
</application>
Running Android program, press the home key to return to the desktop, click on the program icon at the time to avoid restarting the program solution again