Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android application doesn't appear on recent apps list

Tags:

android

mobile

i'm deploying an android application (Android 4.0.3) and when I press the home screen the application doesn't stay on the recent apps list. I've noticed that when I restart the application, it starts on the last screen i've navigated before press the home button. Anyone can help? Here is me Manifest:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.test"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk android:minSdkVersion="15" />

    <uses-permission android:name="android.permission.INTERNET" />

    <application android:icon="@drawable/logo_home"
        android:allowBackup="true">
        <activity
            android:name="com.test.activity.CommunicatorActivity"
            android:launchMode="singleTop"
            android:label="" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />

            </intent-filter>

        </activity>
        <activity android:name="com.test.activity.InputActivity"
            android:windowSoftInputMode="adjustPan|stateHidden">
        </activity>
        <activity android:name="com.test.activity.SettingsActivity" 
            android:windowSoftInputMode="adjustPan|stateHidden">
        </activity>
        <activity android:name="com.test.activity.OutputActivity"
            android:windowSoftInputMode="adjustPan|stateHidden">
        </activity>
    </application>

</manifest>
like image 806
user1517951 Avatar asked Mar 21 '13 16:03

user1517951


People also ask

Why are my recent apps not showing?

Reboot your device in Safe Mode. Update your smartphone OS regularly. Use a dedicated third-party Android launcher app. Factory reset your device.

Why are certain apps not showing?

This is because if the app hasn't been installed yet, it will not appear on the home screen. You can find the installed and uninstalled apps in App Gallery, where the pre-installed apps and the third-party ones are all be stored.

How do I enable recently used apps?

You'll be able to see your recent apps with a single tap. From the Home screen, tap the Recents icon to the left of the Home button. All of your active or opened apps will be listed. If you've customized your Navigation bar, Recents may be located on the right, unless you're using full screen gestures.

How do I add recently installed apps on Android?

Swipe up from the bottom, hold, then let go. If you're on Android Go with 3-button navigation, tap Recent apps .


1 Answers

I'm going to go out on a limb and suggest that this is your problem:

android:label="" 

In your root activity CommunicatorActivity you've set the label to be an empty string. This label is used to identify your app in the list of available apps and because it is empty, this may be causing it not to show up in the list of recent apps.

like image 50
David Wasser Avatar answered Oct 01 '22 01:10

David Wasser