您可以拥有一个扩展 ExpandableListView 的自定义视图并在 TabActivity 中使用它。
可扩展的列表视图
public class CustomExpListView extends ExpandableListView{
/** Your code **/
}
托管选项卡的主要活动
public class MyTabActivity extends TabActivity{
private TabHost tabhost;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
tabHost = getTabHost();
tabHost.addTab(tabHost
.newTabSpec("Tab 1")
.setIndicator("Tab 1",
this.getResources().getDrawable(
R.drawable.tab_icon))
.setContent(new Intent(this, Tab1.class)));
/** Further code**/
}
}
带有 exp 列表的选项卡的 XML 布局文件(选项卡 1)
/**Other layout stuff goes here**/
<com.jmango.nexus.view.ProductListView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:groupIndicator="@drawable/group_indicator"
android:childIndicator="@drawable/child_indicator"
android:cacheColorHint="#00000000"
android:divider="#00BBFF"
android:childDivider="@android:drawable/divider_horizontal_dark"
android:smoothScrollbar="true"
android:id="@+id/exp_list_view"/>
在带有 exp 列表的选项卡的类中
CustomExpListView custExpListView = (CustomExpListView) this
.findViewById(R.id.exp_list_view);
您还可以扩展侦听器并对其进行自定义。
希望能帮助到你!