首页 > 移动平台 > 详细

Android启动时闪一下黑屏或者白屏

时间:2014-07-23 16:57:11      阅读:481      评论:0      收藏:0      [点我收藏+]

1.设定主题,此主题为透明的,加入到res/values/styles.xml中:

<style name="Theme.AppStartLoadTranslucent" parent="android:Theme">  
            <item name="android:windowIsTranslucent">true</item> 
        <item name="android:windowNoTitle">true</item>  
</style>

 

 

2.设定android启动时使用此主题,在AndroidManifest.xml中设定:

<application  
        android:allowBackup="true"  
        android:icon="@drawable/ic_launcher"  
        android:label="@string/app_name"  
        android:theme="@style/Theme.AppStartLoadTranslucent"  
        >  
        <activity android:name=".MainActivity" android:label="@string/app_name">  
            <intent-filter>  
                 <action android:name="android.intent.action.MAIN" />    
                 <category android:name="android.intent.category.LAUNCHER" />    
            </intent-filter>  
        </activity>  
    </application> 

Android启动时闪一下黑屏或者白屏,布布扣,bubuko.com

Android启动时闪一下黑屏或者白屏

原文:http://www.cnblogs.com/mingfeng002/p/3863272.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!