我动态添加了标签。 Alaways我的第一个标签只有在从另一个标签返回后才会加载。能否请你给我一个解决方案来解决这个问题。
// ------------动态添加标签
for (int i=0; i<tabs.length; i++){
String tabName = tabs[i];
specs = th.newTabSpec(tabName);
specs.setContent(R.id.llItemList);
list1=(ListView)findViewById(R.id.lvCommonList);
adapter=new Adapter(this, item[i]);
list1.setAdapter(adapter);
specs.setIndicator(tabName);
th.addTab(specs);
}
public void onTabChanged(String tabId) {
// TODO Auto-generated method stub
currentTab = tabId;
for (int i=0; i<tabs.length; i++){
if (currentTab.equals(tabs[i])){
linearLayout.removeView(list1);
linearLayout.addView(list1);
adapter=new Adapter(this, item[i]);
list1.setAdapter(adapter);
}
}
}