我开发了一个 Ionic 应用程序,它在 Android 版本 6.0.1 (Marshmallow)、Android 4.4 (KitKat) 和 Android 7.1(Nougat) 之外的 Android 版本中运行良好。
它在启动画面加载后显示白屏。我参考了一些链接,但没有运气。这些是我提到的链接:
- https://forum.ionicframework.com/t/white-page-showing-after-splash-screen-before-app-load/2908/19
- Ionic 应用程序在 android 4 版本上显示白屏
cli 包:(C:\Users\ADMIN\AppData\Roaming\npm\node_modules)
@ionic/cli-utils : 1.19.2
ionic (Ionic CLI) : 3.20.0
全局包:
cordova (Cordova CLI) : 8.0.0
本地包:
Cordova Platforms : android 7.0.0
Ionic Framework : ionic1 1.0.0-rc.2
系统:
Node : v8.11.3
npm : 5.6.0
OS : Windows 10
环境变量:
ANDROID_HOME : not set
杂项:
backend : legacy
插入:
- 科尔多瓦插件兼容 1.2.0 “兼容”
- 科尔多瓦插件控制台 1.1.0 “控制台”
- 科尔多瓦插件设备 1.1.6 “设备”
- cordova-plugin-inappbrowser 3.0.0 “InAppBrowser”
- 科尔多瓦插件键盘 1.1.5“键盘”
- cordova-plugin-network-information 1.3.3 “网络信息”
- 科尔多瓦插件闪屏 4.0.3 “闪屏”
- 科尔多瓦插件状态栏 2.2.3 “状态栏”
- 科尔多瓦插件白名单 1.3.2 “白名单” 10 。cordova-plugin-x-socialsharing 5.1.8 “社交分享”
- cordova-plugin-x-toast 2.6.0 “吐司”
- es6-promise-plugin 4.1.0 “承诺”
config.xml 文件
<content src="index.html" />
<access origin="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />
<allow-intent href="tel:*" />
<allow-intent href="sms:*" />
<allow-intent href="mailto:*" />
<allow-intent href="geo:*" />
<allow-intent href="market:*" />
<preference name="webviewbounce" value="false" />
<preference name="UIWebViewBounce" value="false" />
<preference name="DisallowOverscroll" value="true" />
<preference name="BackupWebStorage" value="none" />
<preference name="SplashMaintainAspectRatio" value="true" />
<preference name="SplashScreenDelay" value="2000" />
<preference name="FadeSplashScreenDuration" value="1000" />
<preference name="SplashScreen" value="screen" />
<preference name="ShowSplashScreenSpinner" value="true" />
<preference name="AutoHideSplashScreen" value="false" />
在 app.js 中运行函数
.run(function($ionicPlatform, $rootScope, $timeout, $ionicLoading, $ionicPopup, $ionicHistory, $state) {
$ionicPlatform.ready(function() {
navigator.splashscreen.hide();
if (window.Connection) {
if (navigator.connection.type == Connection.NONE) {
var alertPopup = $ionicPopup.alert({
title: 'No Internet Connection!',
template: 'Sorry, no Internet connectivity detected. Please reconnect and Try again.'
});
alertPopup.then(function(res) {
ionic.Platform.exitApp();
});
}
}
if (window.cordova && window.cordova.plugins.Keyboard) {
cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
}
if (window.StatusBar) {
StatusBar.styleDefault();
}
});
})
请帮我解决一下这个。我努力解决这个问题一个星期。