可扩展的列表组件

news/2024/11/19 5:43:57/

ExpandableListView(可扩展列表组件).ExpandableListView所显示的列表项应该有由ExpandableListAdapter提供。
实现ExpandableListAdapter的三种常见方式:

  • 扩展BaseExpandableListAdapter 实现ExpandableListAdapter。
  • 使用SimpleExpandableListAdapter将两个List集合包装成ExpandableListAdapter。
  • 使用SimpleCursorTreeAdapter将Cursor中的数据包装成SimpleCursorTreeAdapter。
    布局如下:
布局简单,后面的LinearLayout,TextView和ImageView是直接在代码中获取的
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"android:paddingLeft="@dimen/activity_horizontal_margin"android:paddingRight="@dimen/activity_horizontal_margin"android:paddingTop="@dimen/activity_vertical_margin"android:paddingBottom="@dimen/activity_vertical_margin"tools:context="com.example.expandablelistview.MainActivity"><ExpandableListView
       android:layout_width="match_parent"android:layout_height="match_parent"android:childDivider="@color/colorAccent"android:id="@+id/elistview"android:dividerHeight="2dp"></ExpandableListView></LinearLayout>
childDivider是指定各子列表项之间的分隔条

这里写图片描述

package com.example.expandablelistview;import android.content.Context;
import android.view.Gravity;
import android.view.View;
import android.view.ViewGroup;
import android.widget.AbsListView;
import android.widget.BaseExpandableListAdapter;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;public class MyExpandableListView extends BaseExpandableListAdapter {
//这里的Context是为了给MainActivity传数据的private Context context;public MyExpandableListView(Context context) {this.context = context;}int[] image = new int[]{R.mipmap.kemic , R.mipmap.d, R.mipmap.abc};String[] armTypes = new String[]{"科比", "霍祁君", "全智贤"};String[][] arms = new String[][]{{"凌晨四点的洛杉矶", "你的后仰没有酒", "我却醉的像条狗", "我的青春"},{"羊驼王子", "霍霍", "需要人陪", "一首简单的歌"},{"人生大赢家","气质女神","柔和","灵气"}};//获取指定组位置,指定子列表项处的子列表项数据@Overridepublic Object getChild(int groupPosition, int childPosition) {return arms[groupPosition][childPosition];}@Overridepublic long getChildId(int groupPosition, int childPosition) {return childPosition;}@Overridepublic int getChildrenCount(int groupPosition) {return arms[groupPosition].length;}private TextView getTextView(){AbsListView.LayoutParams layoutParams = new AbsListView.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,64);//注意这里context和this的区别TextView textView = new TextView(context);textView.setLayoutParams(layoutParams);textView.setGravity(Gravity.CENTER_VERTICAL|Gravity.LEFT);textView.setPadding(36,0,0,0);textView.setTextSize(20);return  textView;}//该方法决定每个子选项的外观@Overridepublic View getChildView(int groupPosition, int childPosition, boolean isLastChild, View convertView, ViewGroup parent) {TextView textView=getTextView();textView.setText(getChild(groupPosition,childPosition).toString());return textView;}//获取指定组位置处的选项@Overridepublic Object getGroup(int groupPosition) {return armTypes[groupPosition];}@Overridepublic int getGroupCount() {return armTypes.length;}@Overridepublic long getGroupId(int groupPosition) {return groupPosition;}//该方法决定每个组选项的外观@Overridepublic View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) {LinearLayout linearLayout=new LinearLayout(context);linearLayout.setOrientation(LinearLayout.HORIZONTAL);ImageView  images = new ImageView(context);images.setImageResource(image[groupPosition]);images.setMaxWidth(100);linearLayout.addView(images);TextView textView = getTextView();textView.setText(getGroup(groupPosition).toString());linearLayout.addView(textView);return linearLayout;}@Overridepublic boolean isChildSelectable(int groupPosition, int childPosition) {return true;}@Overridepublic boolean hasStableIds() {return true;}
}
package com.example.expandablelistview;import android.content.Context;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.BaseExpandableListAdapter;
import android.widget.ExpandableListView;public class MainActivity extends AppCompatActivity {private ExpandableListView expandableListView;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);expandableListView= (ExpandableListView) findViewById(R.id.elistview);MyExpandableListView expandableListViewAdapter=new MyExpandableListView(this);expandableListView.setAdapter(expandableListViewAdapter);}
}

效果图如下:
这里写图片描述

这里写图片描述

所谓的可扩展就是点击图片时会显示刚开始隐藏在图片下的文字信息。当点击第一张图片时:
这里写图片描述

点击第二张:
这里写图片描述

点击第三张:
这里写图片描述

注意:context,this,MainActivity.this,getActivity()之间的用法


http://www.ppmy.cn/news/377809.html

相关文章

备战双十一 点击率为何下降?测图一下就知道

测图是进行大促前必备工作&#xff0c;该从哪些维度去测图以及如何分析数据得出结论&#xff0c;电商侠通过这些实际案例告诉大家。 想要测好入口图&#xff0c;需要关注以下指标&#xff1a; &#xff08;1&#xff09;文案和明星大片点击率测试 &#xff08;2&#xff09;…

回头再说 004

深夜里&#xff0c;看月光斑驳的影子&#xff0c;看它们在眼前摇曳岁月就这样慢慢的从手中溜走 走得不留痕迹 每个繁华的都市背后都有一些寂寞的灵魂 在夜色下它们汇聚又分离 城市的心情&#xff0c;就在这些灵魂的手中演绎 ---《小凤直播室片花》 风 悠悠的风 悠然在这一刻晚空…

卷积神经网络(CNN)

1.定义一个卷积神经网络。 我们需要三个基本的元素来定义一个基本的卷积网络 1.卷积层 2.池化层 3.全连接层 4.输出层 卷积层 在这一层中&#xff0c;假设我们有一个6*6的图像。我们定义一个权值矩阵&#xff0c;用来从图像中提取一定的特征。 我们把权值初始化为一个…

html标签学习

这里复习一下常用的标签。 列表标签 <ul type"disc"><li>林志玲</li><li>全智贤</li> </ul><!--有序标签--> <ol type"a" start"c"><li>切格瓦拉</li><li>铁娘子</li>…

html标签之img

<!DOCTYPE html> <html lang"en"> <head><meta charset"UTF-8"><title>image tag演示</title> </head> <body><img src"./img/qzx1.jpg" alt"全智贤" title"妹子" widt…

HTML5开发系列(1) 之 标签

1.标签的分类 1.双标签 例如&#xff1a;<body> </body> 2.单标签 例如: <br/> 2.标签之间的关系 2.1 是嵌套关系即父子关系 2.2 兄弟姐妹关系&#xff1b; 3.各种标签 3.0 注释标签 <!--标题标签一共有6个&#xff0c;重要性依次减少&#xff0c;字…

中文人物关系图谱构建与应用项目(人物关系抽取,关系抽取评测)

ChinesePersonRelationGraph ChinesePersonRelationGraph, person relationship extraction based on nlp methods.中文人物关系知识图谱项目,内容包括中文人物关系图谱构建,基于知识库的数据回标,基于远程监督与bootstrapping方法的人物关系抽取,基于知识图谱的知识问答等应用…

html学习(一)

代码标签 < head >用于存放title、meta、base 双标签 <标签名> 内容 </标签名> < body > 标签开始的地方 < /body >标签结束部分 / 标签结束部分 单标签 <标签名 /> 也称为空标签&#xff0c;例如&#xff1a;< br /> 换行 标…