WEB开发网
开发学院手机开发Android 开发 Android将TAB选项卡放在屏幕底部 阅读

Android将TAB选项卡放在屏幕底部

 2010-06-01 04:32:00 来源:WEB开发网   
核心提示:@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.bottomtab);tab_host = (TabHost) findView

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.bottomtab);

tab_host = (TabHost) findViewById(R.id.edit_item_tab_host);

tab_host.setup(this.getLocalActivityManager());

TabSpec ts1 = tab_host.newTabSpec("TAB_WEATHER");

ts1.setIndicator("Weather");

ts1.setContent(new Intent(this, Weather.class));

tab_host.addTab(ts1);

TabSpec ts2 = tab_host.newTabSpec("TAB_MAIL");

ts2.setIndicator("Mail");

ts2.setContent(new Intent(this, MailSend.class));

tab_host.addTab(ts2);

TabSpec ts3 = tab_host.newTabSpec("TAB_JUMP");

ts3.setIndicator("Jump");

ts3.setContent(new Intent(this, TabJump.class));

tab_host.addTab(ts3);

tab_host.setCurrentTab(0);

}

}

而关于页面的跳转,就是:

TestTab.tabHost.setCurrentTab(0);

如此这般,就形成了下面的这个东西,其实还没有放在上面好看。。。所以也证实了上面那个应用不是简单地放置TAB在底端了。有机会还是再看看ButtonBar了。

device

上一页  1 2 

Tags:Android TAB 选项

编辑录入:coldstar [复制链接] [打 印]
赞助商链接