您的位置:首页 > Web前端 > CSS

系统样式问题

2016-02-23 00:00 183 查看
摘要: 系统样式使用AppTheme时,开机启动页面会有个白色闪屏问题,两种解决方案。

第一种,设置透明


<style name=
"AppTheme"
parent=
"android:style/Theme.Black.NoTitleBar.Fullscreen"
type=
"text/css"
><item name=android:windowIsTranslucent>
true
</item></style>


第二种,设置背景图
<!-- 为 Theme 设置背景图 --><style name=
"AppTheme"
parent=
"android:style/Theme.Black.NoTitleBar.Fullscreen"
type=
"text/css"
><item name=android:windowBackground>
@drawable
/splash_bg</item></style>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: