Android activity跳转时黑屏解决方案
程序员文章站
2022-06-08 18:27:42
...
当我们做activity跳转时,有时是需要自定义跳转动画的,当我们自定义跳转动画后,会发现跳转过程中新的activity背后是黑漆漆的
这对用户体验很差
解决办法:
1.首先先定义一个style
<style name="MyAppTheme" parent="AppTheme">
<item name="android:windowIsTranslucent">true</item>//保证背景透明
</style>
这里的item只有一个,就是windowIsTranslucent,这个属性就可以保证用这个style的activity背景透明
2.在需要解决跳转黑屏的Activity的xml声明文件添加刚刚声明的theme,就可以保证跳转不黑屏了
<activity
android:name="guidePage.LoginPage"
android:theme="@style/MyAppTheme" />
<activity
3.这是我个人的AppTheme,可以借鉴也可以自己定义
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="android:windowNoTitle">true</item>
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
4.颜色
colorPrimary #3F51B5
colorPrimaryDark #303F9F
colorAccent #FF4081
5.本文章原文地址:https://blog.csdn.net/qq_28183203/article/details/72420649
6.感谢提供
上一篇: PHP无限级分类查找父层函数_PHP教程
推荐阅读