在多台设备上测试我的应用程序后,我发现其中一些如果我点击应用程序图标它会显示给我
WelcomeActivity
而不是从后台恢复应用程序。我知道WelcomeActivity是LAUNCHER,但在我的其他设备上,应用程序图标总是将我带回后台应用程序。
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:launchMode="singleTop"
android:noHistory="true"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".WelcomeActivity"
android:screenOrientation="portrait"
android:theme="@style/Theme.AppCompat.Light.NoActionBar"
android:windowSoftInputMode="adjustPan">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".MainActivity"
android:launchMode="singleTop"
android:screenOrientation="portrait"
android:theme="@style/AppTheme"
android:windowSoftInputMode="adjustPan">
在WelcomeActivity之后,我使用MainActivity。并且通常应用程序在活着的时候被推到后台。
答案 0 :(得分:1)
删除
android:launchMode="singleTop"
因为如果活动的实例已经存在于目标任务的顶部,系统会通过调用其onNewIntent()方法将意图路由到该实例,而不是创建活动的新实例。{{ 3}}