我想在我的视图上显示加载屏幕。在浏览器上,加载微调器显示,但不在我的真实设备上(三星Galaxy S3 Mini,Android 4.1.2)。
ionicLoading和任何Android版本都有任何已知错误吗?
.controller('PagesCtrl', function($rootScope,$scope, $stateParams, $http, $ionicLoading) {
$ionicLoading.show({
template: '<ion-spinner icon="android"></ion-spinner>'
});
$http({
....doin' some stuff here
})
.success(function (response) { ...; $ionicLoading.hide();
});
})