现在很多的应用一开始点击的时候总会出现黑屏或者白屏,甚至前段时间微信也有同样的问题。其实白屏或者黑屏还是一些其他的东西,都是因为Android 主题的问题,只要自己自定义一个启动主题,问题完美解决。
解决如下:
style文件中添加:
<style name="AppStartLoad" parent="@android:style/Theme.NoTitleBar.Fullscreen"> <item name="android:windowBackground">@drawable/splash</item> <item name="android:windowNoTitle">true</item> </style>
manifest中引用:
<activity android:name="com.pztuan.module.Splash" android:theme="@style/AppStartLoad" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity>
如有问题请留言,转载注明出处。
原文地址:http://blog.csdn.net/rain_butterfly/article/details/39642261