ExpandableListView是Android中的一個控件,用于顯示可擴展的列表視圖。它可以顯示分組和子項的層次結構,類似于一個樹形結構。
使用ExpandableListView的步驟如下:
<ExpandableListView
android:id="@+id/expandableListView"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
ExpandableListView expandableListView = findViewById(R.id.expandableListView);
ExpandableListAdapter adapter = new ExpandableListAdapter();
expandableListView.setAdapter(adapter);
class ExpandableListAdapter extends BaseExpandableListAdapter {
// 實現父項個數的方法
@Override
public int getGroupCount() {
return groupCount;
}
// 實現子項個數的方法
@Override
public int getChildrenCount(int groupPosition) {
return childrenCount;
}
// 實現獲取父項數據的方法
@Override
public Object getGroup(int groupPosition) {
return groupData;
}
// 實現獲取子項數據的方法
@Override
public Object getChild(int groupPosition, int childPosition) {
return childData;
}
// 實現獲取父項ID的方法
@Override
public long getGroupId(int groupPosition) {
return groupPosition;
}
// 實現獲取子項ID的方法
@Override
public long getChildId(int groupPosition, int childPosition) {
return childPosition;
}
// 實現獲取是否具有穩定ID的方法
@Override
public boolean hasStableIds() {
return false;
}
// 實現獲取父項視圖的方法
@Override
public View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) {
// 創建或獲取父項視圖
return groupView;
}
// 實現獲取子項視圖的方法
@Override
public View getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent) {
// 創建或獲取子項視圖
return childView;
}
// 實現獲取子項是否可選的方法
@Override
public boolean isChildSelectable(int groupPosition, int childPosition) {
return true;
}
}
expandableListView.setOnChildClickListener(new ExpandableListView.OnChildClickListener() {
@Override
public boolean onChildClick(ExpandableListView parent, View v, int groupPosition, int childPosition, long id) {
// 處理子項點擊事件
return true;
}
});
通過以上步驟,可以實現展示可擴展的分組和子項的列表視圖,并處理子項的點擊事件。