[Android]BaseExpandableListAdapter实现可折叠的列表

2024-02-19 02:48

本文主要是介绍[Android]BaseExpandableListAdapter实现可折叠的列表,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

使用BaseExpandableListAdapter 可以实现所谓的可折叠的列表,例如QQ里好友的分组的功能。

基于基于BaseExpandableListAdapter扩展的ExpandableList用法,现在网上流行的主要有两种:第一种是向BaseExpandableListAdapter传入两个数组,第一个是表示Group(目录头)信息的一维数组,第二个是表示Child(目录子项)的二维数组数组;第二种是构建两个类,一个是表示目录信息的GroupInfo类,另一个是表示子项信息的ChildInfo类,然后传入BaseExpandableListAdapter。通过对比发现,第一种方法由于数组是固定的,而实际项目中往往需要动态变化的目录和子项,因此用处不大,第二种方法文件太多,实现复杂。这里提供一种方法,传递两个个动态的二维数组来实现目录结构。


package com.example.test;import java.util.ArrayList;import android.os.Bundle;
import android.app.Activity;
import android.graphics.Color;
import android.graphics.drawable.ColorDrawable;
import android.view.Gravity;
import android.view.Menu;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseExpandableListAdapter;
import android.widget.ExpandableListAdapter;
import android.widget.ExpandableListView;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;
import android.view.View.OnClickListener;public class MainActivity extends Activity {@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);//Group数据ArrayList<String> groupList = new ArrayList<String>();groupList.add("我的好友");groupList.add("我的亲人");groupList.add("我的同学");//Child数据ArrayList<String> itemList1 = new ArrayList<String>();itemList1.add("小米");itemList1.add("小李");ArrayList<String> itemList2 = new ArrayList<String>();itemList2.add("小丽");itemList2.add("小小");itemList2.add("小可");ArrayList<String> itemList3 = new ArrayList<String>();itemList3.add("小南");itemList3.add("小飞");itemList3.add("小丁");itemList3.add("小美");ArrayList<ArrayList<String>> childList = new ArrayList<ArrayList<String>>();childList.add(itemList1);childList.add(itemList2);childList.add(itemList3);//可折叠ListExpandableListView list = new ExpandableListView(this);ExpandableListAdapter mAdapter = new MyExpandableListAdapter(groupList, childList);list.setAdapter(mAdapter);list.setCacheColorHint(0x00000000);list.setSelector(new ColorDrawable(Color.TRANSPARENT));list.setGroupIndicator(null);for (int i = 0; i < mAdapter.getGroupCount(); i++) {list.expandGroup(i);}setContentView(list);}//Adapterprivate class MyExpandableListAdapter extends BaseExpandableListAdapter {private ArrayList<String> groupList;private ArrayList<ArrayList<String>> childList;MyExpandableListAdapter(ArrayList<String> groupList, ArrayList<ArrayList<String>> childList) {this.groupList = groupList;this.childList = childList;}public Object getChild(int groupPosition, int childPosition) {return childList.get(groupPosition).get(childPosition);}private int selectedGroupPosition = -1;private int selectedChildPosition = -1;public void setSelectedPosition(int selectedGroupPosition, int selectedChildPosition) {this.selectedGroupPosition = selectedGroupPosition;this.selectedChildPosition = selectedChildPosition;}public long getChildId(int groupPosition, int childPosition) {return childPosition;}public int getChildrenCount(int groupPosition) {return childList.get(groupPosition).size();}public View getChildView(final int groupPosition, final int childPosition, boolean isLastChild, View convertView, ViewGroup parent) {TextView textView = null;if (convertView == null) {textView = new TextView(MainActivity.this);textView.setPadding(32, 10, 0, 10);convertView = textView;} else {textView = (TextView) convertView;}textView.setText(getChild(groupPosition, childPosition).toString());if (groupPosition == selectedGroupPosition) {if (childPosition == selectedChildPosition) {textView.setBackgroundColor(0xffb6ddee);} else {textView.setBackgroundColor(Color.TRANSPARENT);}}textView.setOnClickListener(new OnClickListener() {public void onClick(View v) {setSelectedPosition(groupPosition, childPosition);notifyDataSetChanged();}});return textView;}public Object getGroup(int groupPosition) {return groupList.get(groupPosition);}public int getGroupCount() {return groupList.size();}public long getGroupId(int groupPosition) {return groupPosition;}public View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) {LinearLayout cotain = new LinearLayout(MainActivity.this);cotain.setPadding(0, 10, 0, 10);cotain.setGravity(Gravity.CENTER_VERTICAL);ImageView imgIndicator = new ImageView(MainActivity.this);TextView textView = new TextView(MainActivity.this);textView.setText(getGroup(groupPosition).toString());textView.setPadding(5, 0, 0, 0);if (isExpanded) {imgIndicator.setBackgroundResource(R.drawable.bg_arrow_up);} else {imgIndicator.setBackgroundResource(R.drawable.bg_arrow_down);}cotain.addView(imgIndicator);cotain.addView(textView);return cotain;}public boolean hasStableIds() {return true;}public boolean isChildSelectable(int groupPosition, int childPosition) {return true;}}@Overridepublic boolean onCreateOptionsMenu(Menu menu) {getMenuInflater().inflate(R.menu.main, menu);return true;}
}

groupList 用于组名(类似QQ的好友、同学、朋友),

childList 每个元素都是一组子数据(类似QQ同学中的张三,李四的集合)




这篇关于[Android]BaseExpandableListAdapter实现可折叠的列表的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

SpringBoot3实现Gzip压缩优化的技术指南

《SpringBoot3实现Gzip压缩优化的技术指南》随着Web应用的用户量和数据量增加,网络带宽和页面加载速度逐渐成为瓶颈,为了减少数据传输量,提高用户体验,我们可以使用Gzip压缩HTTP响应,... 目录1、简述2、配置2.1 添加依赖2.2 配置 Gzip 压缩3、服务端应用4、前端应用4.1 N

SpringBoot实现数据库读写分离的3种方法小结

《SpringBoot实现数据库读写分离的3种方法小结》为了提高系统的读写性能和可用性,读写分离是一种经典的数据库架构模式,在SpringBoot应用中,有多种方式可以实现数据库读写分离,本文将介绍三... 目录一、数据库读写分离概述二、方案一:基于AbstractRoutingDataSource实现动态

Python FastAPI+Celery+RabbitMQ实现分布式图片水印处理系统

《PythonFastAPI+Celery+RabbitMQ实现分布式图片水印处理系统》这篇文章主要为大家详细介绍了PythonFastAPI如何结合Celery以及RabbitMQ实现简单的分布式... 实现思路FastAPI 服务器Celery 任务队列RabbitMQ 作为消息代理定时任务处理完整

Java枚举类实现Key-Value映射的多种实现方式

《Java枚举类实现Key-Value映射的多种实现方式》在Java开发中,枚举(Enum)是一种特殊的类,本文将详细介绍Java枚举类实现key-value映射的多种方式,有需要的小伙伴可以根据需要... 目录前言一、基础实现方式1.1 为枚举添加属性和构造方法二、http://www.cppcns.co

使用Python实现快速搭建本地HTTP服务器

《使用Python实现快速搭建本地HTTP服务器》:本文主要介绍如何使用Python快速搭建本地HTTP服务器,轻松实现一键HTTP文件共享,同时结合二维码技术,让访问更简单,感兴趣的小伙伴可以了... 目录1. 概述2. 快速搭建 HTTP 文件共享服务2.1 核心思路2.2 代码实现2.3 代码解读3.

Android中Dialog的使用详解

《Android中Dialog的使用详解》Dialog(对话框)是Android中常用的UI组件,用于临时显示重要信息或获取用户输入,本文给大家介绍Android中Dialog的使用,感兴趣的朋友一起... 目录android中Dialog的使用详解1. 基本Dialog类型1.1 AlertDialog(

MySQL双主搭建+keepalived高可用的实现

《MySQL双主搭建+keepalived高可用的实现》本文主要介绍了MySQL双主搭建+keepalived高可用的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,... 目录一、测试环境准备二、主从搭建1.创建复制用户2.创建复制关系3.开启复制,确认复制是否成功4.同

Java实现文件图片的预览和下载功能

《Java实现文件图片的预览和下载功能》这篇文章主要为大家详细介绍了如何使用Java实现文件图片的预览和下载功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... Java实现文件(图片)的预览和下载 @ApiOperation("访问文件") @GetMapping("

使用Sentinel自定义返回和实现区分来源方式

《使用Sentinel自定义返回和实现区分来源方式》:本文主要介绍使用Sentinel自定义返回和实现区分来源方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Sentinel自定义返回和实现区分来源1. 自定义错误返回2. 实现区分来源总结Sentinel自定

Java实现时间与字符串互相转换详解

《Java实现时间与字符串互相转换详解》这篇文章主要为大家详细介绍了Java中实现时间与字符串互相转换的相关方法,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录一、日期格式化为字符串(一)使用预定义格式(二)自定义格式二、字符串解析为日期(一)解析ISO格式字符串(二)解析自定义