正如标题所述,当我连续开始两个活动时,第二个活动的主题为windowIsTranslucent
为真。
我发现第一个活动的onPause
没有被调用,这意味着所有这些活动都处于恢复状态。
此问题仅发生在android pie(API 28)或更高版本上
startActivity(new Intent(this, Activity1.class));
startActivity(new Intent(this, Activity2.class));
<resources>
<!-- Base application theme. -->
<style name="AppThemeA" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:windowIsTranslucent">true</item>
</style>
</resources>
<application
android:name="com.taou.maimai.MyApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppThemeA">
<activity android:name=".MainActivity"
android:launchMode="singleTask"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="com.taou.maimai.Activity1" />
<activity android:name="com.taou.maimai.Activity2"
/>
</application>
答案 0 :(得分:0)
尝试像这样在onCreate
中设置主题:
public void onCreate(..){
super.onCreate();
setTheme(R.style.transcluent_theme);
setContentView(R.layout.main_activity_2);
}