はサイドでapp.jsは、あなたがの.configモジュールに$ ionicConfigProviderを注入する必要があると$ ionicConfigProvider.tabs.position( '下に')
.config(function($stateProvider, $urlRouterProvider,$ionicConfigProvider) {
$ionicConfigProvider.tabs.position('bottom'); //top
// Ionic uses AngularUI Router which uses the concept of states
// Learn more here: https://github.com/angular-ui/ui-router
// Set up the various states which the app can be in.
// Each state's controller can be found in controllers.js
$stateProvider
// setup an abstract state for the tabs directive
.state('tab', {
url: '/tab',
abstract: true,
templateUrl: 'templates/tabs.html'
})
.
.
.
// if none of the above states are matched, use this as the fallback
$urlRouterProvider.otherwise('/tab/dash');
});
を追加するファイルを参照してください。
私のために同じ感謝:) – Whisher
いいえそれは動作しません。ブラウザのタブはAndroidの下にあります - 上に – Toolkit
@Toolkit Androidタブは、Ionicのドキュメントに従ってデフォルトで上にレンダリングされるはずです。 Androidのガイドラインは、OSのデフォルト動作が最下部にあるため、下の棒グラフを使用しないようにしています。http://developer.android.com/design/patterns/pure-android.html –