android – 离子后退按钮

android – 离子后退按钮,第1张

概述我有基本的离子应用程序,我已经禁用了应用程序上的后退按钮,是否有一个原因,后退按钮仍然在 Android设备上工作? 我目前正在测试离子视图. 这是我的代码: .run(function($ionicPlatform) { $ionicPlatform.ready(function() { // Hide the accessory bar by default (remove thi 我有基本的离子应用程序,我已经禁用了应用程序上的后退按钮,是否有一个原因,后退按钮仍然在 Android设备上工作?

我目前正在测试离子视图.

这是我的代码:

.run(function($ionicPlatform) {  $ionicPlatform.ready(function() {    // HIDe the accessory bar by default (remove this to show the accessory bar above the keyboard    // for form inputs)    if(window.cordova && window.cordova.plugins.Keyboard) {      cordova.plugins.Keyboard.hIDeKeyboardAccessorybar(true);    }    if(window.Statusbar) {      // org.apache.cordova.statusbar required      Statusbar.styleDefault();    }  });  $ionicPlatform.registerBackbuttonAction(function(e) {  e.preventDefault();  },101);})
解决方法 根据离子 documentation

Your back button action will overrIDe each of the above actions
whose priority is less than the priority you provIDe.

并且鉴于您希望在所有情况下完全禁用后退按钮,并且引用列表中的 *** 作的最高优先级为500,您应该提供超过500,600的优先级值.放置在$ionicPlatform.ready()中时,下面的代码应该可以工作

$ionicPlatform.registerBackbuttonAction(function(e) {},600);
总结

以上是内存溢出为你收集整理的android – 离子后退按钮全部内容,希望文章能够帮你解决android – 离子后退按钮所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1131150.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存