AndroidのExpandableListViewの使い方は何ですか

ExpandableListViewは、グループとサブアイテムの階層構造を表示する、拡張可能なリストビューを表示するためのAndroidのウィジェットです。これはツリー構造によく似ています。

ExpandableListViewを使うための手順は次のとおりです。

  1. レイアウトファイルでExpandableListViewを定義する:
<ExpandableListView
android:id="@+id/expandableListView"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
  1. グループおよび項目のデータを提供するアダプターを作成して設定する。
ExpandableListView expandableListView = findViewById(R.id.expandableListView);
ExpandableListAdapter adapter = new ExpandableListAdapter();
expandableListView.setAdapter(adapter);
  1. 継承されたBaseExpandableListAdapterのアダプタクラスを作成し、関連メソッドを実装する
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;
}
}
  1. ExpandableListView のクリックリスナーの設定
expandableListView.setOnChildClickListener(new ExpandableListView.OnChildClickListener() {
@Override
public boolean onChildClick(ExpandableListView parent, View v, int groupPosition, int childPosition, long id) {
// 处理子项点击事件
return true;
}
});

上記のステップにて、拡張可能なグループと子要素を表示するリストビューの実装と、子要素のクリックイベントの処理が完了しています。

コメントを残す 0

Your email address will not be published. Required fields are marked *


广告
広告は10秒後に閉じます。
bannerAds