您好,登錄后才能下訂單哦!
Android的App啟動時白屏的問題解決辦法
在手機上調試后第一次啟動后會等待很長時間白屏,
設置style樣式,給activity加上設置的樣式,完美解決
參考一下下面的代碼.就可以解決(親測好用)
<style name="SplashTheme" parent="AppBaseTheme"> <!-- 將splash圖片設置在這,這樣這張圖片取代白屏 --> <item name="android:windowBackground">@drawable/splash</item> <item name="android:windowFullscreen">true</item> <!-- 或者是將主題設置成透明,雖然點擊圖標會有點小小的卡頓,但是用戶體驗不影響 --> <!-- <item name="android:windowIsTranslucent">true</item> --> <!-- 透明背景不要了 --> </style>
<!-- 然后將圖片設置給啟動Activity --> <activity android:name=".activity.SplashActivity" android:theme="@style/SplashTheme" android:screenOrientation="portrait"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity>
以上就是對Android App啟動白屏解決辦法的實例詳解,如有疑問請留言或者到本站社區交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。