Android 启动 白屏问题 解决

  • Post author:
  • Post category:其他


转自:http://ddddddl.iteye.com/blog/1471713


由于Activity只能到onResume时,才能展示到前台,所以,如果为MAIN activity设置背景的话,无论onCreate-onResume速度多快,都会出现短暂的白屏或者黑屏(视<application>的background属性)


其实解决的办法很简单,只需将你的Startup Activity中的View的background属性删除,




然后在AndroidManifest.xml为你的Startup Activity加上theme属性即可

    <activity  
        android:name=".android.ui.activities.StartActivity"  
        android:theme="@style/Theme.Start"  
        >  
        <intent-filter>  
            <action android:name="android.intent.action.MAIN" />  
            <category android:name="android.intent.category.LAUNCHER" />  
        </intent-filter>  
    </activity>  
    ----  
    <style name="Theme.Start" parent="android:Theme">  
        <item name="android:windowBackground">@drawable/newlogin_bg</item>  
        <item name="android:windowNoTitle">true</item>  
    </style> 


     --------------------------
    我发现白屏,黑屏问题和Theme样式有关,自定义Theme,背景色搞成透明就没这个问题了。




Android

设置背景色为透明


方法一:

只要在配置文件内activity属性配置内加上

android:theme=”@android:style/Theme.Translucent”

就好了。

这样就调用了android的透明样式!


方法二:

先在res/values下建colors.xml文件,写入:

<?xmlversion=”1.0″encoding=”UTF-8″?>

<resources>

<colorname=”transparent”>#9000</color>

</resources>

这个值设定了整个界面的透明度,为了看得见效果,现在设为透明度为56%(9/16)左右。

再在res/values/下建styles.xml,设置程序的风格

<?xmlversion=”1.0″encoding=”utf-8″?>

<resources>

<stylename=”Transparent”>

<itemname=”android:windowBackground”>@color/transparent</item>

<itemname=”android:windowIsTranslucent”>true</item>

<itemname=”android:windowAnimationStyle”>@+android:style/Animation.Translucent</item>

</style>

</resources>

最后一步,把这个styles.xml用在相应的Activity上。即在AndroidManifest.xml中的任意<activity>标签中添加

android:theme=”@style/transparent”

如果想设置所有的activity都使用这个风格,可以把这句标签语句添加在<application>中。

最后运行程序,哈哈,是不是发现整个界面都被蒙上一层半透明了。最后可以把背景色#9000换成#0000,运行程序后,就全透明了,看得见背景下的所有东西可以却都操作无效。