Ionic Webview 在 Android 上加载黑屏
Ionic Webview Loading Black Screen on Android
我正在使用 Ionic,我注意到在加载我的应用程序的 webview 时,显示黑屏。
有没有办法用图片替换黑屏或至少将样式设置为不同的颜色?
提前致谢
是的,这很容易。它叫做 splash screen.Take a look. if you want to auto create this screens from one image take a look on thisImage Generation, if you need progress bar also then please thake a look on this link
angular.module('LoadingApp', ['ionic'])
.controller('LoadingCtrl', function($scope, $ionicLoading) {
$scope.show = function() {
$ionicLoading.show({
template: 'Loading...'
}).then(function(){
console.log("The loading indicator is now displayed");
});
};
$scope.hide = function(){
$ionicLoading.hide().then(function(){
console.log("The loading indicator is now hidden");
});
};
});
我找到了解决办法。我阅读了 github.com/apache/cordova-plugin-splashscreen 的文档并找到了 这一行。我将该行添加到 config.xml。如果设置为false,每次都会启动启动画面。
我正在使用 Ionic,我注意到在加载我的应用程序的 webview 时,显示黑屏。 有没有办法用图片替换黑屏或至少将样式设置为不同的颜色?
提前致谢
是的,这很容易。它叫做 splash screen.Take a look. if you want to auto create this screens from one image take a look on thisImage Generation, if you need progress bar also then please thake a look on this link
angular.module('LoadingApp', ['ionic'])
.controller('LoadingCtrl', function($scope, $ionicLoading) {
$scope.show = function() {
$ionicLoading.show({
template: 'Loading...'
}).then(function(){
console.log("The loading indicator is now displayed");
});
};
$scope.hide = function(){
$ionicLoading.hide().then(function(){
console.log("The loading indicator is now hidden");
});
};
});
我找到了解决办法。我阅读了 github.com/apache/cordova-plugin-splashscreen 的文档并找到了 这一行。我将该行添加到 config.xml。如果设置为false,每次都会启动启动画面。