LoginSignup
1
1

More than 5 years have passed since last update.

Androidでtabを出したくないとき

Last updated at Posted at 2012-09-30

Androidはtab barを持ってなく、tab Groupしかない。tabを出したくないときは、tab Groupを作らないで、winだけを使うといいっぽい。

こんな感じ。
//Android
if (Titanium.Platform.osname == 'android') {
var win = myapp.ui.createWin();
win.open();
} else {
//iPhone
var tabGroup = myapp.ui.createTabGroup();
tabGroup.open();
}

>参考
http://developer.appcelerator.com/question/33841/android-how-to-hide-tab-bar

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1