APP启动白屏问题

来源:互联网 发布:淘宝上拍卖的车怎么样 编辑:程序博客网 时间:2024/05/18 15:30

在manifests.xml中的application属性中加入Theme:

android:theme="@style/AppTheme" 

然后配置AppTheme:

    <style name="AppTheme" parent="android:Theme.Light">

        <item name="android:windowIsTranslucent">true</item>

        <item name="android:windowNoTitle">true</item>  <!-- 关键代码-->

    </style>

0 0
原创粉丝点击