中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android分享筆記(2) APP啟動時閃屏

發布時間:2020-06-26 02:21:05 來源:網絡 閱讀:1220 作者:elyar007 欄目:移動開發

出處:http://www.egef111.sh.cn/archives/95


App在啟動時,即在歡迎界面。老是出現白屏或黑屏,閃一下然后才出現歡迎界面。

我歡迎界面原先是這樣的:

<?xml?version="1.0"?encoding="utf-8"?>
<LinearLayout?xmlns:android="http://schemas.android.com/apk/res/android"
????android:layout_width="match_parent"
????android:layout_height="match_parent"
????android:background="@mipmap/bg_welcome"
????android:orientation="vertical">

</LinearLayout>

把圖片直接設置為背景,由于Activity只能到onResume時,才能展示到前臺。所以這樣直接設置為背景是會出現閃屏的,其實也不是閃屏,而是Activity的Style(白色或黑色);


是這樣解決的:

  1. 首先 去掉圖片設為背景,即空白layout;

  2. 定義一個Style 擴展自AppTheme,并設定windowBackground為需要顯示的背景圖片

<!--?Base?application?theme.?-->
<style?name="AppTheme"?parent="Theme.AppCompat.Light.DarkActionBar">
????<!--?Customize?your?theme?here.?-->
????<item?name="colorPrimary">#8CC24F</item>
????<item?name="colorPrimaryDark">#8CC24F</item>
????<item?name="colorAccent">@color/colorAccent</item>

</style>

<style?name="WelcomeTheme"?parent="AppTheme">
????<item?name="android:windowBackground">@mipmap/bg_welcome</item>
</style>

3.在Activity配置中引用

<activity
????android:name=".AtyWelcome"
????android:theme="@style/WelcomeTheme">
????<intent-filter>
????????<action?android:name="android.intent.action.MAIN"?/>
????????<category?android:name="android.intent.category.LAUNCHER"?/>
????</intent-filter>
</activity>

到此已經解決了App啟動閃屏問題;

轉載請注明出處:

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

龙山县| 岢岚县| 将乐县| 迁安市| 灵石县| 合江县| 北安市| 大邑县| 锦州市| 威远县| 金溪县| 亚东县| 大丰市| 钦州市| 汉中市| 宝清县| 临高县| 五台县| 东明县| 桂林市| 大冶市| 楚雄市| 曲松县| 永寿县| 马龙县| 饶平县| 滁州市| 河北区| 股票| 恩施市| 海林市| 大兴区| 边坝县| 涟源市| 城市| 临沧市| 石城县| 山阳县| 通化县| 昆山市| 陆丰市|