splash啓動速度優化

在styles.xml中添加

<style name="AppSplash" parent="android:Theme">  
    <item name="android:windowBackground">@drawable/splash</item>  
    <item name="android:windowNoTitle">true</item>  
</style>

Manifast中對應的activity添加theme

<activity 
            android:theme="@style/AppSplash"
            android:name=".SplashActivity" >
        </activity>
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章