繁体   English   中英

第一个活动的onPause在连续启动两个活动时未调用,而第二个活动具有半透明主题

[英]first activity's onPause not called when start two activity continuously and the second activity with translucent theme

就像标题所描述的那样,当我连续开始两个活动时,第二个活动有一个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>

尝试在onCreate设置主题,如下所示:

 public void onCreate(..){
    super.onCreate();
    setTheme(R.style.transcluent_theme);
    setContentView(R.layout.main_activity_2);

  }

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM