1、a-Activity 跳转到 b-Activity 出现黑屏
可以设置 b-Activity为透明主题
styles.xml
<style name="TransparentTheme" parent="AppTheme">
<item name="android:windowIsTranslucent">true</item>
</style>
AndroidManifest.xml
<activity
android:name="BActivity"
android:theme="@style/TransparentTheme" />
2、a-Activity 先跳转至一个 b-Acticity , 再跳转至 c-Activity 出现黑屏
注:b-Activity没有布局,或是一个空布局,无需显示,只是需要它进行逻辑处理和跳转过渡 比如,收到Push通知,点击通知统一跳转至SplashActivity,SplashActivity处理后在进行相应页面的跳转,此时的SplashActivity就是b-Activity
styles.xml
<style name="BTransparentTheme" parent="AppTheme">
<item name="android:windowIsTranslucent">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
</style>
<style name="CTransparentTheme" parent="AppTheme">
<item name="android:windowIsTranslucent">true</item>
</style>
AndroidManifest.xml
<activity
android:name="BActivity"
android:theme="@style/BTransparentTheme" />
<activity
android:name="CActivity"
android:theme="@style/CTransparentTheme" />
|