活动链接标签

时间:2012-06-13 11:41:01

标签: android android-layout

我会创建一个tabhost并确保按下一个标签,它会显示一个布局设置为xml的活动。怎么办?

我想到了这样一个命令:

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

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

1 个答案:

答案 0 :(得分:0)

TabSpec spec3 = tabhost.newTabSpec("Mention");
spec3.setIndicator("Menti", getResources().getDrawable(R.drawable.ic_launcher));
spec3.setContent(new Intent().setClass(this,Mention.class));