我使用离子与jboss开发者工作室进行简单的应用程序。我在开发过程中在浏览器中运行应用程序完成后我使用命令提示使用离子构建android构建应用程序我现在安装在手机中问题出现在顶部导航栏后退按钮显示但后面的名称不显示而标题转到左侧侧。
<body ng-app="starter">
<!--
The nav bar that will be updated as we navigate between views.
-->
<ion-nav-bar class="bar-stable">
<ion-nav-back-button>
</ion-nav-back-button>
</ion-nav-bar>
<!--
The views will be rendered in the <ion-nav-view> directive below
Templates are in the /templates folder (but you could also
have templates inline in this html file if you'd like).
-->
<ion-nav-view></ion-nav-view>
</body>
答案 0 :(得分:0)
我刚遇到与你相同的问题。
添加
$ionicConfigProvider.backButton.previousTitleText(true);
到app.config部分来解决这个问题。