码迷,mamicode.com
首页 > 移动开发 > 详细

Android 启动出现白屏或者黑屏的问题

时间:2015-09-08 11:58:34      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:

解决方案是:自定义样式

<style name="WelcomeAppTheme" parent="android:Theme.Light">
        <item name="android:windowBackground">@drawable/welcome</item>
        <item name="android:windowNoTitle">true</item>
    </style>

 


然后在AndroidManifest.xml中设置:

android:theme="@style/WelcomeAppTheme"

如下

 

<activity
android:name="com.cloudroom.ufu.ui.UFuWelcomeActivity"
android:configChanges="orientation"
android:label="@string/app_name"
android:theme="@style/WelcomeAppTheme" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

 

Android 启动出现白屏或者黑屏的问题

标签:

原文地址:http://www.cnblogs.com/guoxinxu/p/4790894.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!