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

解决方案是:自定义样式

<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>

 

posted @ 2015-09-08 10:44  索利达尔·群星之怒  阅读(314)  评论(0编辑  收藏  举报