您如何使用setCurrentTab命令?这是我现在拥有的代码...当我对其进行调试时,我得到“ C:Tab 3”,因此保存方面可以正常工作,但是该选项卡仍然没有改变吗?对我有帮助吗?谢谢!

TabHost th = (TabHost)findViewById(R.id.tabhost);

        th.setup();
        TabSpec specs = th.newTabSpec("tag1");
        specs.setContent(R.id.tab1);
        specs.setIndicator("Zone Manager");
        th.addTab(specs);
        specs = th.newTabSpec("tag2");
        specs.setContent(R.id.tab2);
        specs.setIndicator("",res.getDrawable(R.drawable.ic_tab_vaccontrol));
        th.addTab(specs);
        specs = th.newTabSpec("tag3");
        specs.setContent(R.id.tab3);
        specs.setIndicator("Tab 3");
        th.addTab(specs);

        Tab = (settings.getInt("Tab", 1));
        Log.d("TabStuff", "C: Tab " + Tab);
        th.setCurrentTab(Tab);

最佳答案

尝试使用setCurrentTabByTag(String nameOfTheTabSpec)方法代替简单的setCurrentTab

09-27 21:25