0

タブホストを作成し、タブを押すと、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 に答える