ExpandableListView实现二层和三层列表源码

2024-06-04 10:08

本文主要是介绍ExpandableListView实现二层和三层列表源码,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

二层列表是直接用androidAPI中的ExpandableListView即可实现,三层列表其实是对二层列表的一个嵌套,实现起来会相对繁琐。

部分代码:

SuperTreeViewAdapter.java

复制代码
public class SuperTreeViewAdapter extends BaseExpandableListAdapter {static public class SuperTreeNode {Object parent;//二级树形菜单的结构体List<TreeViewAdapter.TreeNode> childs = new ArrayList<TreeViewAdapter.TreeNode>();}private List<SuperTreeNode> superTreeNodes = new ArrayList<SuperTreeNode>();private Context parentContext;private OnChildClickListener stvClickEvent;//外部回调函数public SuperTreeViewAdapter(Context view,OnChildClickListener stvClickEvent) {parentContext = view;this.stvClickEvent=stvClickEvent;}public List<SuperTreeNode> GetTreeNode() {return superTreeNodes;}public void UpdateTreeNode(List<SuperTreeNode> node) {superTreeNodes = node;}public void RemoveAll(){superTreeNodes.clear();}public Object getChild(int groupPosition, int childPosition) {return superTreeNodes.get(groupPosition).childs.get(childPosition);}public int getChildrenCount(int groupPosition) {return superTreeNodes.get(groupPosition).childs.size();}public ExpandableListView getExpandableListView() {AbsListView.LayoutParams lp = new AbsListView.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT, TreeViewAdapter.ItemHeight);ExpandableListView superTreeView = new ExpandableListView(parentContext);superTreeView.setLayoutParams(lp);return superTreeView;}/*** 三层树结构中的第二层是一个ExpandableListView*/    public View getChildView(int groupPosition, int childPosition,boolean isLastChild, View convertView, ViewGroup parent) {//final ExpandableListView treeView = getExpandableListView();final TreeViewAdapter treeViewAdapter = new TreeViewAdapter(this.parentContext,0);List<TreeNode> tmp = treeViewAdapter.getTreeNode();//临时变量取得TreeViewAdapter的TreeNode集合,可为空final TreeNode treeNode=(TreeNode) getChild(groupPosition, childPosition);tmp.add(treeNode);treeViewAdapter.updateTreeNode(tmp);treeView.setAdapter(treeViewAdapter);//关键点:取得选中的二级树形菜单的父子节点,结果返回给外部回调函数treeView.setOnChildClickListener(this.stvClickEvent);/*** 关键点:第二级菜单展开时通过取得节点数来设置第三级菜单的大小*/treeView.setOnGroupExpandListener(new OnGroupExpandListener() {@Overridepublic void onGroupExpand(int groupPosition) {AbsListView.LayoutParams lp = new AbsListView.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT,(treeNode.childs.size()+1)*TreeViewAdapter.ItemHeight + 10);treeView.setLayoutParams(lp);}});/*** 第二级菜单回收时设置为标准Item大小*/treeView.setOnGroupCollapseListener(new OnGroupCollapseListener() {@Overridepublic void onGroupCollapse(int groupPosition) {AbsListView.LayoutParams lp = new AbsListView.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT,TreeViewAdapter.ItemHeight);treeView.setLayoutParams(lp);}});treeView.setPadding(TreeViewAdapter.PaddingLeft*2, 0, 0, 0);return treeView;}/*** 三级树结构中的首层是TextView,用于作为title*/public View getGroupView(int groupPosition, boolean isExpanded,View convertView, ViewGroup parent) {TextView textView = TreeViewAdapter.getTextView(this.parentContext);textView.setText(getGroup(groupPosition).toString());textView.setPadding(TreeViewAdapter.PaddingLeft*2, 0, 0, 0);return textView;}public long getChildId(int groupPosition, int childPosition) {return childPosition;}public Object getGroup(int groupPosition) {return superTreeNodes.get(groupPosition).parent;}public int getGroupCount() {return superTreeNodes.size();}public long getGroupId(int groupPosition) {return groupPosition;}public boolean isChildSelectable(int groupPosition, int childPosition) {return true;}public boolean hasStableIds() {return true;}
}
复制代码

ExpandableListViewActivity.java

复制代码
List<SuperTreeViewAdapter.SuperTreeNode> superNodeTree = superAdapter.GetTreeNode();forint i = 0; i < parent.length; i++) {SuperTreeViewAdapter.SuperTreeNode superNode = new SuperTreeViewAdapter.SuperTreeNode();superNode.parent = parent[i];forint j = 0; j < child_grandchild.length; j++) {TreeViewAdapter.TreeNode node = new TreeViewAdapter.TreeNode();node.parent = child_grandchild[j][0][0];forint k = 0; k < child_grandchild[j][1].length; k++) {node.childs.add(child_grandchild[j][1][k]);}superNode.childs.add(node);}superNodeTree.add(superNode);}        superAdapter.UpdateTreeNode(superNodeTree);expandableListView.setAdapter(superAdapter);
复制代码

main.xml

复制代码
<LinearLayoutandroid:id="@+id/linearLayout1"android:layout_width="match_parent"android:layout_height="wrap_content"android:layout_gravity="center"android:gravity="center" ><Buttonandroid:id="@+id/button1"android:layout_width="100dip"android:layout_height="wrap_content"android:text="二层结构" /><Buttonandroid:id="@+id/button2"android:layout_width="100dip"android:layout_height="wrap_content"android:text="三层结构" /></LinearLayout><ExpandableListViewandroid:id="@+id/expandablelistview"android:layout_width="fill_parent"android:layout_height="fill_parent"></ExpandableListView>
复制代码


效果图 :

三层列表

 

二层列表

 源码下载:ExpandableListView.rar

这篇关于ExpandableListView实现二层和三层列表源码的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1029775

相关文章

windos server2022里的DFS配置的实现

《windosserver2022里的DFS配置的实现》DFS是WindowsServer操作系统提供的一种功能,用于在多台服务器上集中管理共享文件夹和文件的分布式存储解决方案,本文就来介绍一下wi... 目录什么是DFS?优势:应用场景:DFS配置步骤什么是DFS?DFS指的是分布式文件系统(Distr

NFS实现多服务器文件的共享的方法步骤

《NFS实现多服务器文件的共享的方法步骤》NFS允许网络中的计算机之间共享资源,客户端可以透明地读写远端NFS服务器上的文件,本文就来介绍一下NFS实现多服务器文件的共享的方法步骤,感兴趣的可以了解一... 目录一、简介二、部署1、准备1、服务端和客户端:安装nfs-utils2、服务端:创建共享目录3、服

C#使用yield关键字实现提升迭代性能与效率

《C#使用yield关键字实现提升迭代性能与效率》yield关键字在C#中简化了数据迭代的方式,实现了按需生成数据,自动维护迭代状态,本文主要来聊聊如何使用yield关键字实现提升迭代性能与效率,感兴... 目录前言传统迭代和yield迭代方式对比yield延迟加载按需获取数据yield break显式示迭

Python实现高效地读写大型文件

《Python实现高效地读写大型文件》Python如何读写的是大型文件,有没有什么方法来提高效率呢,这篇文章就来和大家聊聊如何在Python中高效地读写大型文件,需要的可以了解下... 目录一、逐行读取大型文件二、分块读取大型文件三、使用 mmap 模块进行内存映射文件操作(适用于大文件)四、使用 pand

python实现pdf转word和excel的示例代码

《python实现pdf转word和excel的示例代码》本文主要介绍了python实现pdf转word和excel的示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价... 目录一、引言二、python编程1,PDF转Word2,PDF转Excel三、前端页面效果展示总结一

Python xmltodict实现简化XML数据处理

《Pythonxmltodict实现简化XML数据处理》Python社区为提供了xmltodict库,它专为简化XML与Python数据结构的转换而设计,本文主要来为大家介绍一下如何使用xmltod... 目录一、引言二、XMLtodict介绍设计理念适用场景三、功能参数与属性1、parse函数2、unpa

C#实现获得某个枚举的所有名称

《C#实现获得某个枚举的所有名称》这篇文章主要为大家详细介绍了C#如何实现获得某个枚举的所有名称,文中的示例代码讲解详细,具有一定的借鉴价值,有需要的小伙伴可以参考一下... C#中获得某个枚举的所有名称using System;using System.Collections.Generic;usi

Go语言实现将中文转化为拼音功能

《Go语言实现将中文转化为拼音功能》这篇文章主要为大家详细介绍了Go语言中如何实现将中文转化为拼音功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 有这么一个需求:新用户入职 创建一系列账号比较麻烦,打算通过接口传入姓名进行初始化。想把姓名转化成拼音。因为有些账号即需要中文也需要英

C# 读写ini文件操作实现

《C#读写ini文件操作实现》本文主要介绍了C#读写ini文件操作实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧... 目录一、INI文件结构二、读取INI文件中的数据在C#应用程序中,常将INI文件作为配置文件,用于存储应用程序的

C#实现获取电脑中的端口号和硬件信息

《C#实现获取电脑中的端口号和硬件信息》这篇文章主要为大家详细介绍了C#实现获取电脑中的端口号和硬件信息的相关方法,文中的示例代码讲解详细,有需要的小伙伴可以参考一下... 我们经常在使用一个串口软件的时候,发现软件中的端口号并不是普通的COM1,而是带有硬件信息的。那么如果我们使用C#编写软件时候,如