為您解碼網(wǎng)站建設的點點滴滴
發(fā)表日期:2018-12 文章編輯:小燈 瀏覽次數(shù):2984
Android App 一般在啟動的時候會出現(xiàn)白屏、黑屏,持續(xù) 0.5s - 3s (看 App 啟動加載復雜度 與 手機性能)。
其主要的原因是默認的 Andraid App 是沒有設置啟動圖的。在啟動的時候,Andraid App 需要加載各種資源,包括創(chuàng)建 Activity 等。
如果第一個Activity,還沒創(chuàng)建完成,就會看到白屏、黑屏,一般解決這個問題就是為 Andraid App 設置一個啟動圖。就像淘寶 App 那樣,啟動的時候會看到一張關于淘寶的圖片。
而 iOS App 默認設置了啟動圖,就不會像 Android App 那樣出現(xiàn)白屏、黑屏。
在打開 Flutter App 時會出現(xiàn)短暫的白屏現(xiàn)象(Android),這并不是 Flutter 的特例,在 React Native 上同樣如此。因此在 React Native 上解決白屏的處理方式與 Flutter 類似。
在 xml 里,添加啟動圖。當 App 打開時會先看到啟動圖,接著渲染 Flutter 所管理的 Activity。
首先在 android/app/src/main/res/drawable-hdpi
里加上一個圖片作為程序啟動圖(名稱隨意,例如:bg.png),然后修改 android/app/src/main/res/values/styles.xml
。
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> <!-- 這里將剛剛那張圖片設置為背景圖片, bg對應圖片名稱 --> <item name="android:windowBackground">@drawable/bg</item> </style>
或者,在 android\app\src\main\res\drawable\launch_background.xml
里添加,也行。
<?xml version="1.0" encoding="utf-8"?> <!-- Modify this file to customize your launch splash screen --> <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <item android:drawable="@android:color/white" /><!-- You can insert your own image assets here --> <item> <bitmap android:gravity="center" android:src="@mipmap/bg" /> </item> </layer-list>
最后,記得在 Flutter 底端頁面上設置背景為非透明。
@override Widget build(BuildContext context) { return new Scaffold( appBar: new AppBar( title: new Text('應用'), ), body: new Container( color: Colors.white, ), ); }
日期:2018-10 瀏覽次數(shù):7248
日期:2018-12 瀏覽次數(shù):4322
日期:2018-07 瀏覽次數(shù):4870
日期:2018-12 瀏覽次數(shù):4169
日期:2018-09 瀏覽次數(shù):5492
日期:2018-12 瀏覽次數(shù):9916
日期:2018-11 瀏覽次數(shù):4799
日期:2018-07 瀏覽次數(shù):4574
日期:2018-05 瀏覽次數(shù):4853
日期:2018-12 瀏覽次數(shù):4318
日期:2018-10 瀏覽次數(shù):5134
日期:2018-12 瀏覽次數(shù):6207
日期:2018-11 瀏覽次數(shù):4455
日期:2018-08 瀏覽次數(shù):4587
日期:2018-11 瀏覽次數(shù):12625
日期:2018-09 瀏覽次數(shù):5573
日期:2018-12 瀏覽次數(shù):4826
日期:2018-10 瀏覽次數(shù):4181
日期:2018-11 瀏覽次數(shù):4523
日期:2018-12 瀏覽次數(shù):6058
日期:2018-06 瀏覽次數(shù):4003
日期:2018-08 瀏覽次數(shù):5431
日期:2018-10 瀏覽次數(shù):4454
日期:2018-12 瀏覽次數(shù):4518
日期:2018-07 瀏覽次數(shù):4356
日期:2018-12 瀏覽次數(shù):4496
日期:2018-06 瀏覽次數(shù):4376
日期:2018-11 瀏覽次數(shù):4370
日期:2018-12 瀏覽次數(shù):4244
日期:2018-12 瀏覽次數(shù):5276
Copyright ? 2013-2018 Tadeng NetWork Technology Co., LTD. All Rights Reserved.