0

我会创建一个 tabhost 并确保您按下一个选项卡,它会显示一个具有从 xml 设置的布局的活动。怎么做?

我想到了这样的命令:

tabHost.addTab(tabHost.newTabSpec("Factory").setContent(
new MyTabContentFactory(this)).setIndicator("Factory"));

我可以在 MyTabContentFactory 类中正常加载布局吗?

4

1 回答 1

0
TabSpec spec3 = tabhost.newTabSpec("Mention");
spec3.setIndicator("Menti", getResources().getDrawable(R.drawable.ic_launcher));
spec3.setContent(new Intent().setClass(this,Mention.class));    
于 2012-06-13T12:44:33.557 回答