国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術(shù)文章
文章詳情頁

完美解決Android App啟動頁有白屏閃過的問題

瀏覽:81日期:2022-09-22 17:18:01

應用啟動的時候有短暫的白屏,如圖:

完美解決Android App啟動頁有白屏閃過的問題

可以通過設置theme的方式來解決

<style name='AppTheme' parent='Theme.AppCompat.Light.NoActionBar'> <!-- Customize your theme here. --> <item name='colorPrimary'>@color/colorPrimary</item> <item name='colorPrimaryDark'>@color/colorPrimaryDark</item> <item name='colorAccent'>@color/colorAccent</item> </style> <style name='AppTheme.Transparent'> <item name='android:windowIsTranslucent'>true</item> <item name='windowNoTitle'>true</item> </style>

在AndroidManifest中使用 AppTheme.Transparent

<activity android:name='.MainActivity' android:theme='@style/AppTheme.Transparent' > <intent-filter><action android:name='android.intent.action.MAIN' /><action android:name='android.intent.action.VIEW'/><category android:name='android.intent.category.LAUNCHER' /> </intent-filter> </activity>

然后重新運行程序安裝。

完美解決Android App啟動頁有白屏閃過的問題

補充知識:解決Android啟動頁白屏及圖片拉伸的問題

【Android小知識】

為了解決Android冷啟動延遲、白屏等問題,往往會將啟動圖片設置到styles.xml文件中去,但是直接在style文件中引用圖片的話很大可能會造成圖片拉伸和變形,所以建議將圖片配置到xml中去,最后在style文件中引入xml就可以了,如下代碼所示:

style.xml

<style name='SplashActivityThemes' parent='Theme.AppCompat.NoActionBar'> <item name='android:windowBackground'>@drawable/bg_splash</item> <item name='android:windowFullscreen'>true</item> </style>

bg_splash.xml

<?xml version='1.0' encoding='utf-8'?><layer-list xmlns:android='http://schemas.android.com/apk/res/android' > <item> <shape> <solid android:color='#FFFFFF'/> </shape> </item> <item android:bottom='50dp'> <bitmap android:gravity='bottom|center_horizontal' android:src='http://www.intensediesel.com/bcjs/@mipmap/icon_welcome'/> </item></layer-list>

以上這篇完美解決Android App啟動頁有白屏閃過的問題就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持好吧啦網(wǎng)。

標簽: Android
相關(guān)文章:
主站蜘蛛池模板: 光泽县| 潢川县| 台南县| 尚志市| 建湖县| 兴安盟| 开平市| 平顶山市| 陕西省| 白玉县| 鲁甸县| 南漳县| 应用必备| 本溪| 呼伦贝尔市| 梅州市| 丹阳市| 二手房| 祁阳县| 仁布县| 阳原县| 龙岩市| 民县| 弋阳县| 莲花县| 桃江县| 元阳县| 永顺县| 隆子县| 南雄市| 新和县| 龙胜| 洱源县| 南靖县| 三江| 梅河口市| 山东省| 汶川县| 定西市| 博乐市| 汪清县|