美文网首页
Android背景白屏或者黑屏的解决

Android背景白屏或者黑屏的解决

作者: 泡沫苏打 | 来源:发表于2017-12-18 10:44 被阅读0次
    <!-- 为 Theme 设置背景图 -->
    <style name="AppTheme" parent="android:style/Theme.Black.NoTitleBar.Fullscreen">
        <item name="android:windowBackground">@drawable/splash_bg</item>
    </style>
    

    或者:

    <!-- 为 Theme 设置透明属性 -->
    <style name="AppTheme" parent="android:style/Theme.Black.NoTitleBar.Fullscreen">
        <item name="android:windowIsTranslucent">true</item>
    </style>

    相关文章

      网友评论

          本文标题:Android背景白屏或者黑屏的解决

          本文链接:https://www.haomeiwen.com/subject/nmbpwxtx.html