legongju.com
我们一直在努力
2025-01-12 00:58 | 星期天

利用ExpandableListView实现树形结构展示

ExpandableListView 是 Android 中的一个组件,它可以用来实现树形结构的数据展示

  1. 首先,在 res/layout 目录下创建一个布局文件 list_item.xml,用于显示每个列表项:


   


  1. 创建一个 Java 类 MyExpandableListAdapter,继承自 BaseExpandableListAdapter
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseExpandableListAdapter;
import android.widget.TextView;

import java.util.List;
import java.util.Map;

public class MyExpandableListAdapter extends BaseExpandableListAdapter {

    private Context context;
    private List groupList;
    private Map> childList;

    public MyExpandableListAdapter(Context context, List groupList, Map> childList) {
        this.context = context;
        this.groupList = groupList;
        this.childList = childList;
    }

    @Override
    public int getGroupCount() {
        return groupList.size();
    }

    @Override
    public int getChildrenCount(int groupPosition) {
        return childList.get(groupList.get(groupPosition)).size();
    }

    @Override
    public Object getGroup(int groupPosition) {
        return groupList.get(groupPosition);
    }

    @Override
    public Object getChild(int groupPosition, int childPosition) {
        return childList.get(groupList.get(groupPosition)).get(childPosition);
    }

    @Override
    public long getGroupId(int groupPosition) {
        return groupPosition;
    }

    @Override
    public long getChildId(int groupPosition, int childPosition) {
        return childPosition;
    }

    @Override
    public boolean hasStableIds() {
        return false;
    }

    @Override
    public View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) {
        if (convertView == null) {
            convertView = LayoutInflater.from(context).inflate(R.layout.list_item, parent, false);
        }
        TextView tvItem = convertView.findViewById(R.id.tv_item);
        tvItem.setText(groupList.get(groupPosition));
        return convertView;
    }

    @Override
    public View getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent) {
        if (convertView == null) {
            convertView = LayoutInflater.from(context).inflate(R.layout.list_item, parent, false);
        }
        TextView tvItem = convertView.findViewById(R.id.tv_item);
        tvItem.setText(childList.get(groupList.get(groupPosition)).get(childPosition));
        return convertView;
    }

    @Override
    public boolean isChildSelectable(int groupPosition, int childPosition) {
        return true;
    }
}
  1. 在你的 Activity 或 Fragment 中,初始化 ExpandableListView 并设置适配器:
import android.os.Bundle;
import android.widget.ExpandableListView;

import androidx.appcompat.app.AppCompatActivity;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class MainActivity extends AppCompatActivity {

    private ExpandableListView expandableListView;
    private MyExpandableListAdapter adapter;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        expandableListView = findViewById(R.id.expandableListView);

        // 初始化数据
        List groupList = new ArrayList<>();
        groupList.add("Group 1");
        groupList.add("Group 2");
        groupList.add("Group 3");

        Map> childList = new HashMap<>();
        List childList1 = new ArrayList<>();
        childList1.add("Child 1-1");
        childList1.add("Child 1-2");
        childList.put("Group 1", childList1);

        List childList2 = new ArrayList<>();
        childList2.add("Child 2-1");
        childList2.add("Child 2-2");
        childList2.add("Child 2-3");
        childList.put("Group 2", childList2);

        List childList3 = new ArrayList<>();
        childList3.add("Child 3-1");
        childList.put("Group 3", childList3);

        // 设置适配器
        adapter = new MyExpandableListAdapter(this, groupList, childList);
        expandableListView.setAdapter(adapter);
    }
}
  1. res/layout/activity_main.xml 中添加 ExpandableListView


   


现在运行应用程序,你将看到一个树形结构的列表。点击父节点时,子节点将展开或收起。

未经允许不得转载 » 本文链接:https://www.legongju.com/article/101950.html

相关推荐

  • 可展开列表视图性能优化有哪些方法

    可展开列表视图性能优化有哪些方法

    可展开列表视图性能优化是一个涉及多方面考虑的过程,以下是一些常见的性能优化方法: 懒加载:按需加载数据,减少一次性加载的数据量,提升用户体验和系统性能。...

  • ExpandableListView子项点击事件怎么处理

    ExpandableListView子项点击事件怎么处理

    在Android中,处理ExpandableListView子项点击事件的方法是通过设置一个OnChildClickListener。以下是如何实现此监听器的示例: 首先,确保你已经在布局文件中添...

  • ExpandableListView分组标题如何设置

    ExpandableListView分组标题如何设置

    在Android中,要设置ExpandableListView的分组标题,需要使用BaseExpandableListAdapter。下面是一个简单的示例来说明如何设置分组标题: 首先,创建一个Expanda...

  • 可展开列表视图在大数据量下的性能挑战及解决方案

    可展开列表视图在大数据量下的性能挑战及解决方案

    在大数据量下,可展开列表视图面临着显著的性能挑战,包括渲染速度慢、内存占用高、用户体验差等问题。以下是对这些挑战及解决方案的详细分析:
    性能挑战 渲...

  • ExpandableListView数据源如何动态更新

    ExpandableListView数据源如何动态更新

    要动态更新ExpandableListView的数据源,您需要遵循以下步骤: 首先,确保您已经设置了一个适配器(如BaseExpandableListAdapter或SimpleExpandableListAdapter)...

  • 如何在ExpandableListView中添加图片

    如何在ExpandableListView中添加图片

    在ExpandableListView中添加图片,您需要自定义一个适配器,该适配器继承自BaseExpandableListAdapter 首先,创建一个自定义的适配器类,例如MyExpandableListAd...

  • range函数在多线程编程中的应用场景

    range函数在多线程编程中的应用场景

    在多线程编程中,range函数主要用于生成一系列整数序列,这些序列可以被不同的线程用于迭代操作,从而实现任务的并行执行。以下是range函数在多线程编程中的一些...

  • 在Python中如何自定义类似range的迭代器

    在Python中如何自定义类似range的迭代器

    在Python中,要创建一个类似range的迭代器,你需要定义一个类,并实现__iter__()和__next__()方法。以下是一个简单的示例:
    class CustomRange: def __init...