我可能在做一些愚蠢的事情......我在同一个标签主机上有一个静态创建的选项卡和一堆动态创建的选项卡。默认显示静态选项卡。当我单击其中一个动态创建的选项卡时,它会正确加载动态内容。但是,当我在此之后单击任何其他选项卡时,无论它是动态创建的还是静态创建的,它都不会做任何事情。知道为什么吗?
这是我在 MyActivitys onResume 方法中尝试做的事情:
final TabHost tabs = (TabHost)findViewById(R.id.tabHost);
tabs.setup();
// Tab with static content
TabHost.TabSpec instructions = tabs.newTabSpec("instructions");
tabs.setOnTabChangedListener(new TabHost.OnTabChangeListener() {
@Override public void onTabChanged(String tabId) {
setTabColors(tabs);
}
});
instructions.setContent(R.id.instructions);
instructions.setIndicator("Instructions");
tabs.addTab(instructions);
// Tabs with dynamic content
for (int i = 0; i < 5; i++) {
TabHost.TabSpec category = tabs.newTabSpec("cat" + i);
final boolean m_editable = editable;
category.setContent(new TabHost.TabContentFactory() {
public View createTabContent(String tag) {
ScrollView scrollView = new ScrollView(MyActivity.this);
TableLayout dataMatrix = new TableLayout(MyActivity.this);
final LayoutInflater inflater = LayoutInflater.from(MyActivity.this);
for(int i=0; i<2; i++) {
TableRow item = (TableRow) inflater.inflate(R.layout.categorydata_entry, dataMatrix, false);
((EditText)(item.getChildAt(0))).setText("row"+i);
}
dataMatrix.addView(item,new TableLayout.LayoutParams( TableLayout.LayoutParams.FILL_PARENT, TableLayout.LayoutParams.WRAP_CONTENT));
}
scrollView.addView(dataMatrix);
return scrollView;
}
});
category.setIndicator(i);
tabs.addTab(category);
}
以及 layout.xml 中的相关元素:
<TabHost android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/tabHost" >
<HorizontalScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:fillViewport="true"
android:scrollbars="none" >
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</HorizontalScrollView>
<FrameLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@android:id/tabcontent" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/instructions" >
<TextView android:layout_width="fill_parent"
android:text="This is the static content tab" />
</LinearLayout>
</FrameLayout>
</TabHost>