你如何使用setCurrentiTem

时间:2012-05-18 00:54:25

标签: java android tabs

如何使用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);

2 个答案:

答案 0 :(得分:1)

我建议关注the Android developers guide。即使您不打算使用TabActivity,它也非常有用。你能发布R.id.tabX的XML吗?

答案 1 :(得分:1)

尝试使用setCurrentTabByTag(String nameOfTheTabSpec)方法而不是简单的setCurrentTab