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

Source: Internet
Author: User

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

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.