我正在研究Ionic,我注意到在我的应用程序的webview正在加载时,会显示黑屏。 有没有办法用图片替换黑色屏幕或至少用不同颜色的样式?
提前谢谢
答案 0 :(得分:1)
我找到了解决方案。我阅读了github.com/apache/cordova-plugin-splashscreen的文档,并且能够找到 这一行。我将该行添加到config.xml。如果设置为false,则每次都会启动splashcreen。
答案 1 :(得分:0)
是的,这很容易。它叫做启动画面。取一个look。如果您想从一张图片自动创建此屏幕,请查看此Image Generation,如果您还需要进度条,请稍后查看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");
});
};
});