0

我有三个片段,TabsAdapter 包含所有片段,我的问题是如何设置默认片段,当您启动应用程序时屏幕上会显示一个片段,我的默认片段是第一个,但我需要在 tabsAdapter 中设置默认片段在中间。当我打开应用程序时,我的 First.class 在屏幕上,我必须导航到 Home.class,我可以将我的 Home.class 设置为默认值并保持在中间吗?

我的代码:

mTabsAdapter.addTab(bar.newTab().setIcon(R.drawable.first),First.class, null);
mTabsAdapter.addTab(bar.newTab().setIcon(R.drawable.home),Home.class, null);
mTabsAdapter.addTab(bar.newTab().setIcon(R.drawable.third),Third.class, null);
4

1 回答 1

0

尝试setCurrentTab(int index)setCurrentTabByTag(String tag)在您tabHost创建它时。

于 2013-07-03T17:10:24.180 回答