您好,登錄后才能下訂單哦!
出處: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(白色或黑色);
是這樣解決的:
首先 去掉圖片設為背景,即空白layout;
定義一個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啟動閃屏問題;
轉載請注明出處:
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。