Click here to Skip to main content
16,012,168 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi Friends,
Install my app from apk file copied to sd card Open it by clicking "open" button after installation.
In this scenario, if user clicks home button when using the app and reopens the app by using launcher icon, last viewed screen is NOT showing up. Instead it starts from login page. Also app not listed under Recent Apps list. Here is my manifest file:
XML
    <uses-permission android:name="android.permission.READ_PHONE_STATE" />
    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
    <uses-permission android:name="android.permission.KILL_BACKGROUND_PROCESSES" />
    <uses-permission android:name="android.permission.CLEAR_APP_CACHE" />

    <application
        android:clearTaskOnLaunch="true"
        android:excludeFromRecents="true"
        android:icon="@drawable/icon"
        android:label="@string/app_name"
        android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen" >
        <activity
            android:name="com.riyamobile1.android.MainActivity"
            android:clearTaskOnLaunch="true"
            android:excludeFromRecents="false"
            android:label="@string/app_name"
            android:noHistory="false" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        
        <activity
            android:name="com.riyamobile1.android.FlightSearchActivity"
            android:configChanges="orientation|keyboardHidden"
            android:windowSoftInputMode="adjustPan" />
        <activity android:name="com.riyamobile1.android.FlightSearchActivityy" />
 
</manifest>
Posted
Updated 4-Jul-13 16:14pm
v3

1 solution

The problem is (I guess) android:clearTasksOnLaunch, because
the description from developer.android
Whether or not all activities will be removed from the task, except for the root activity, whenever it is re-launched from the home
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900