我正在开发一个应用程序,并且刚刚意识到它没有显示在最近的应用程序列表中。
我在应用程序中有 2 个活动,当我按下 Home 键时,无论我在哪个活动上,该应用程序都不会显示在最近的应用程序列表中。
我见过这个问题:SO Question but put the category stuff in manifest 对我不起作用。
以下是我的清单的一部分:
<application android:label="@string/app_name" >
<service android:name=".UploadService" android:exported="false" />
<service android:name=".DownloadService" android:exported="false" />
<activity android:label="@string/app_name"
android:excludeFromRecents="true"
android:screenOrientation="portrait"
android:name="com.test.DOHSMain" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.test.DOHSChange"
android:label="@string/app_name" >
<intent-filter>
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
有谁知道我做错了什么?
注意:我在第二个活动 DOHSChange 上添加了标签,以防万一这会有所帮助,但是否有该行似乎无济于事。
谢谢你的时间