setCurrentTabコマンドをどのように使用しますか?これは私が今持っているコードです...デバッグすると「C:タブ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);