Android引导页面去除白屏

来源:互联网 发布:免费版cad软件下载 编辑:程序博客网 时间:2024/04/29 23:39

1.在style.xml加上theme:

    <!-- 啟動頁去除白屏 -->    <style name="CustomTheme.FullscreenTransparent" parent="@android:style/Theme.Holo.Light.NoActionBar">        <item name="android:windowBackground">@android:color/transparent</item>        <item name="android:windowIsTranslucent">true</item>    </style>

2.在引导页面加上这个style:

android:theme="@style/CustomTheme.FullscreenTransparent"


0 0
原创粉丝点击