activity跳转短暂黑屏问题 - 两种情况解决方案

1、a-Activity 跳转到 b-Activity 出现黑屏

可以设置 b-Activity为透明主题

styles.xml

<style name="TransparentTheme" parent="AppTheme">"android:windowIsTranslucent">true
style>

AndroidManifest.xml

<activityandroid: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">"android:windowIsTranslucent">true"android:windowBackground">@android:color/transparent
style><style name="CTransparentTheme" parent="AppTheme">"android:windowIsTranslucent">true
style>

AndroidManifest.xml

<activityandroid:name="BActivity"android:theme="@style/BTransparentTheme" />
<activityandroid:name="CActivity"android:theme="@style/CTransparentTheme" />


本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!

相关文章

立即
投稿

微信公众账号

微信扫一扫加关注

返回
顶部