6

我创建了一个带有 3 个选项卡的应用程序。该应用程序运行良好,但我希望在应用程序打开时选择并加载第二个选项卡。我该如何设置?

这是我的代码:

public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        TabHost tabHost = getTabHost();



        // Tab for Home
        TabSpec homespec = tabHost.newTabSpec("Home");
        // setting Title and Icon for the Tab
        homespec.setIndicator("Home",getResources().getDrawable(R.drawable.icons_home_tab));
        Intent photosIntent = new Intent(this, HomeActivity.class);
        homespec.setContent(photosIntent);

        // Tab for Child
        TabSpec childspec = tabHost.newTabSpec("Child");
        childspec.setIndicator("Child",getResources().getDrawable(R.drawable.icons_child_tab));
        Intent homeIntent = new Intent(this, ChildActivity.class);
        childspec.setContent(homeIntent);

        // Tab for Account
        TabSpec accspec = tabHost.newTabSpec("Account");
        accspec.setIndicator("Account",getResources().getDrawable(R.drawable.icons_account_tab));
        Intent accIntent = new Intent(this, AccountActivity.class);
        accspec.setContent(accIntent);

        // Adding all TabSpec to TabHost
        tabHost.addTab(homespec); // Adding home tab
        tabHost.addTab(childspec); // Adding child tab
        tabHost.addTab(accspec); //Adding account tab
        }
4

4 回答 4

13

在 tabHost 中添加选项卡后,使用此方法设置当前选项卡

tabHost.setCurrentTab(1);  // here pass the tab index its starting from 0
于 2013-04-18T06:04:44.440 回答
3

tabHost.setCurrentTab(1);在你的 onCreate 中使用

于 2013-04-18T06:04:54.607 回答
1
public override void OnResume() 
    {
        base.OnResume();
        tabHost.CurrentTab = 1; //index of the tab you want to set to default.
    }

覆盖 OnResume() 并将 tabHost 的 CurrentTab 属性分配给您想要的选项卡的索引。

于 2016-11-01T22:31:55.340 回答
0

如果你有碎片,会有一些困难。黑客是使选项卡选择延迟。请参阅此答案中的代码

于 2018-10-11T05:33:49.173 回答