亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

海林市| 永兴县| 杂多县| 女性| 金沙县| 布拖县| 邓州市| 武强县| 拉孜县| 天镇县| 资兴市| 榕江县| 南宫市| 郑州市| 双桥区| 西充县| 大化| 郎溪县| 石城县| 余江县| 大竹县| 河源市| 贺州市| 武汉市| 集贤县| 迁西县| 仲巴县| 甘谷县| 威海市| 富蕴县| 增城市| 乌拉特后旗| 江都市| 托克逊县| 古丈县| 曲周县| 南澳县| 太保市| 呼和浩特市| 那曲县| 西藏|