ExpandableListView的简单例子

2024-02-03 10:18

本文主要是介绍ExpandableListView的简单例子,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

最近一段时间参考网上的例子,做了一下简单的 ExpandableListView,现在和大家共享一下:

1:main.xml的内容

[html]  view plain copy
  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <LinearLayout     
  3.      xmlns:android="http://schemas.android.com/apk/res/android"  
  4.      android:id="@+id/linearLayout"    
  5.      android:layout_width="fill_parent"     
  6.      android:layout_height="fill_parent"    
  7.      androidrientation="vertical"    
  8.      >    
  9.          
  10.      <ExpandableListView    
  11.      android:id="@+id/expandableListView"    
  12.      android:layout_width="fill_parent"    
  13.      android:layout_height="wrap_content"    
  14.          />    
  15. </LinearLayout>   

显示一个ExpandableListView


2:ExpandableListViewDemo 类的内容

[java]  view plain copy
  1. package com.chama.expandablelistviewdemo;  
  2.   
  3. import java.util.ArrayList;  
  4. import java.util.List;  
  5. import android.app.Activity;  
  6. import android.os.Bundle;  
  7. import android.view.Gravity;  
  8. import android.view.View;  
  9. import android.view.ViewGroup;  
  10. import android.widget.AbsListView;  
  11. import android.widget.BaseExpandableListAdapter;  
  12. import android.widget.ExpandableListView;  
  13. import android.widget.TextView;  
  14.   
  15. public class ExpandableListViewDemo extends Activity {  
  16.       
  17.      //定义两个List,用来存放控件中Group/Child中的String  
  18.     private List<String> groupArray;          
  19.     private List<List<String>> childArray;  
  20.       
  21.     /** Called when the activity is first created. */  
  22.     @Override  
  23.     public void onCreate(Bundle savedInstanceState) {  
  24.         super.onCreate(savedInstanceState);  
  25.         setContentView(R.layout.main);  
  26.           
  27.         //对这两个List进行初始化,并插入一些数据  
  28.          groupArray = new ArrayList<String>();    
  29.          childArray = new ArrayList<List<String>>();    
  30.             
  31.          groupArray.add("第一行");    
  32.          groupArray.add("第二行");    
  33.              
  34.          List<String> tempArray = new ArrayList<String>();    
  35.          tempArray.add("第一条");    
  36.          tempArray.add("第二条");    
  37.          tempArray.add("第三条");    
  38.             
  39.         for(int index = 0; index <groupArray.size(); ++index)    
  40.         {    
  41.            childArray.add(tempArray);    
  42.        }    
  43.           
  44.        //给定义好的ExpandableListView添加上Adapter  
  45.        ExpandableListView expandableListView = (ExpandableListView)findViewById(R.id.expandableListView);  
  46.        ExpandableAdapter adapter = new ExpandableAdapter(this);  
  47.        expandableListView.setAdapter(adapter);  
  48.          
  49.     }  
  50.       
  51.     //定义ExpandableListView的Adapter  
  52.      public class ExpandableAdapter extends BaseExpandableListAdapter    
  53.      {    
  54.          Activity activity;    
  55.              
  56.          public ExpandableAdapter(Activity a)    
  57.          {    
  58.              activity = a;    
  59.          }    
  60.            
  61.          public Object getChild(int groupPosition, int childPosition)    
  62.          {    
  63.              return childArray.get(groupPosition).get(childPosition);    
  64.          }   
  65.            
  66.          public long getChildId(int groupPosition, int childPosition)    
  67.          {    
  68.              return childPosition;    
  69.          }   
  70.            
  71.          public int getChildrenCount(int groupPosition)    
  72.          {    
  73.              return childArray.get(groupPosition).size();    
  74.          }   
  75.            
  76.          public View getChildView(int groupPosition, int childPosition,    
  77.                  boolean isLastChild, View convertView, ViewGroup parent)    
  78.          {    
  79.              String string = childArray.get(groupPosition).get(childPosition);    
  80.              return getGenericView(string);    
  81.          }    
  82.            
  83.          // group method stub    
  84.          public Object getGroup(int groupPosition)    
  85.          {    
  86.              return groupArray.get(groupPosition);    
  87.          }    
  88.            
  89.          public int getGroupCount()    
  90.          {    
  91.              return groupArray.size();    
  92.          }   
  93.            
  94.          public long getGroupId(int groupPosition)    
  95.          {    
  96.              return groupPosition;    
  97.          }    
  98.            
  99.          public View getGroupView(int groupPosition, boolean isExpanded,    
  100.                  View convertView, ViewGroup parent)    
  101.          {    
  102.              String string = groupArray.get(groupPosition);    
  103.              return getGenericView(string);    
  104.          }    
  105.            
  106.          // View stub to create Group/Children 's View    
  107.          public TextView getGenericView(String string)    
  108.          {    
  109.              // Layout parameters for the ExpandableListView    
  110.              AbsListView.LayoutParams layoutParams = new AbsListView.LayoutParams(    
  111.                      ViewGroup.LayoutParams.FILL_PARENT, 64);    
  112.              TextView text = new TextView(activity);    
  113.              text.setLayoutParams(layoutParams);    
  114.              // Center the text vertically    
  115.              text.setGravity(Gravity.CENTER_VERTICAL | Gravity.LEFT);    
  116.              // Set the text starting position    
  117.              text.setPadding(36000);    
  118.              text.setText(string);    
  119.              return text;    
  120.          }    
  121.            
  122.         public boolean hasStableIds()    
  123.          {    
  124.              return false;    
  125.          }    
  126.          public boolean isChildSelectable(int groupPosition, int childPosition)    
  127.          {    
  128.              return true;    
  129.          }    
  130.      }    
  131. }  

需要注意的内容:

  1:groupArray 和childArray的内容,分别定义父对象和子对象显示的内容

  2:ExpandableAdapter继承了BaseExpandableListAdapter,并重载了其中的一些方法, 注意public TextView getGenericView(String string)的作用,主要用形成显示父对象和子对象视图的类


3:程序效果

 

这篇关于ExpandableListView的简单例子的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

csu 1446 Problem J Modified LCS (扩展欧几里得算法的简单应用)

这是一道扩展欧几里得算法的简单应用题,这题是在湖南多校训练赛中队友ac的一道题,在比赛之后请教了队友,然后自己把它a掉 这也是自己独自做扩展欧几里得算法的题目 题意:把题意转变下就变成了:求d1*x - d2*y = f2 - f1的解,很明显用exgcd来解 下面介绍一下exgcd的一些知识点:求ax + by = c的解 一、首先求ax + by = gcd(a,b)的解 这个

hdu2289(简单二分)

虽说是简单二分,但是我还是wa死了  题意:已知圆台的体积,求高度 首先要知道圆台体积怎么求:设上下底的半径分别为r1,r2,高为h,V = PI*(r1*r1+r1*r2+r2*r2)*h/3 然后以h进行二分 代码如下: #include<iostream>#include<algorithm>#include<cstring>#include<stack>#includ

usaco 1.3 Prime Cryptarithm(简单哈希表暴搜剪枝)

思路: 1. 用一个 hash[ ] 数组存放输入的数字,令 hash[ tmp ]=1 。 2. 一个自定义函数 check( ) ,检查各位是否为输入的数字。 3. 暴搜。第一行数从 100到999,第二行数从 10到99。 4. 剪枝。 代码: /*ID: who jayLANG: C++TASK: crypt1*/#include<stdio.h>bool h

uva 10387 Billiard(简单几何)

题意是一个球从矩形的中点出发,告诉你小球与矩形两条边的碰撞次数与小球回到原点的时间,求小球出发时的角度和小球的速度。 简单的几何问题,小球每与竖边碰撞一次,向右扩展一个相同的矩形;每与横边碰撞一次,向上扩展一个相同的矩形。 可以发现,扩展矩形的路径和在当前矩形中的每一段路径相同,当小球回到出发点时,一条直线的路径刚好经过最后一个扩展矩形的中心点。 最后扩展的路径和横边竖边恰好组成一个直

poj 1113 凸包+简单几何计算

题意: 给N个平面上的点,现在要在离点外L米处建城墙,使得城墙把所有点都包含进去且城墙的长度最短。 解析: 韬哥出的某次训练赛上A出的第一道计算几何,算是大水题吧。 用convexhull算法把凸包求出来,然后加加减减就A了。 计算见下图: 好久没玩画图了啊好开心。 代码: #include <iostream>#include <cstdio>#inclu

uva 10130 简单背包

题意: 背包和 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstring>#include <cmath>#include <stack>#include <vector>#include <queue>#include <map>

JAVA用最简单的方法来构建一个高可用的服务端,提升系统可用性

一、什么是提升系统的高可用性 JAVA服务端,顾名思义就是23体验网为用户提供服务的。停工时间,就是不能向用户提供服务的时间。高可用,就是系统具有高度可用性,尽量减少停工时间。如何用最简单的方法来搭建一个高效率可用的服务端JAVA呢? 停工的原因一般有: 服务器故障。例如服务器宕机,服务器网络出现问题,机房或者机架出现问题等;访问量急剧上升,导致服务器压力过大导致访问量急剧上升的原因;时间和

简单的角色响应鼠标而移动

actor类 //处理移动距离,核心是找到角色坐标在世界坐标的向量的投影(x,y,z),然后在世界坐标中合成,此CC是在地面行走,所以Y轴投影始终置为0; using UnityEngine; using System.Collections; public class actor : MonoBehaviour { public float speed=0.1f; CharacterCo

docker-compose安装和简单使用

本文介绍docker-compose的安装和使用 新版docker已经默认安装了docker-compose 可以使用docker-compose -v 查看docker-compose版本 如果没有的话可以使用以下命令直接安装 sudo curl -L https://github.com/docker/compose/releases/download/1.16.1/docker-c

JavaFX环境的搭建和一个简单的例子

之前在网上搜了很多与javaFX相关的资料,都说要在Eclepse上要安装sdk插件什么的,反正就是乱七八糟的一大片,最后还是没搞成功,所以我在这里写下我搭建javaFX成功的环境给大家做一个参考吧。希望能帮助到你们! 1.首先要保证你的jdk版本能够支持JavaFX的开发,jdk-7u25版本以上的都能支持,最好安装jdk8吧,因为jdk8对支持JavaFX有新的特性了,比如:3D等;