Android中ExpandableListView控件基本使用

             本文採用一个Demo来展示Android中ExpandableListView控件的使用,如怎样在组/子ListView中绑定数据源。直接上代码例如以下:

程序结构图:

layout文件夹下的 main.xml 文件源代码例如以下:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:orientation="vertical"android:layout_width="fill_parent"android:layout_height="fill_parent"><!-- 我们会自定义listview的显示方式(在另外一个布局文件中边)不用默认的方式 假设自定义listview的显示方式这里这个android:id="@id/android:list" 必须这样写 --><!-- android:drawSelectOnTop="false"此属性用来设置listview上的背景颜色会不会挡住(覆盖)内容 , 假设这是为false就表示不会覆盖掉 --> <ExpandableListView android:id="@id/android:list"               android:layout_width="fill_parent"                android:layout_height="wrap_content"              android:layout_weight="1"               android:drawSelectorOnTop="false"/> 
</LinearLayout>


包 com.andyidea.demo中ContactsActivity.java源代码例如以下:

package com.andyidea.demo;import java.util.ArrayList;
import java.util.List;import android.app.ExpandableListActivity;
import android.os.Bundle;
import android.view.Gravity;
import android.view.View;
import android.view.ViewGroup;
import android.view.Window;
import android.widget.AbsListView;
import android.widget.BaseExpandableListAdapter;
import android.widget.TextView;public class ContactsActivity extends ExpandableListActivity {List<String> group;           //组列表List<List<String>> child;     //子列表ContactsInfoAdapter adapter;  //数据适配器/** Called when the activity is first created. */@Overridepublic void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);requestWindowFeature(Window.FEATURE_NO_TITLE);  //设置为无标题setContentView(R.layout.main);getExpandableListView().setBackgroundResource(R.drawable.default_bg);initializeData();getExpandableListView().setAdapter(new ContactsInfoAdapter());getExpandableListView().setCacheColorHint(0);  //设置拖动列表的时候防止出现黑色背景}/*** 初始化组、子列表数据*/private void initializeData(){group = new ArrayList<String>();child = new ArrayList<List<String>>();addInfo("Andy",new String[]{"male","138123***","GuangZhou"});addInfo("Fairy",new String[]{"female","138123***","GuangZhou"});addInfo("Jerry",new String[]{"male","138123***","ShenZhen"});addInfo("Tom",new String[]{"female","138123***","ShangHai"});addInfo("Bill",new String[]{"male","138231***","ZhanJiang"});}/*** 模拟给组、子列表加入数据* @param g-group* @param c-child*/private void addInfo(String g,String[] c){group.add(g);List<String> childitem = new ArrayList<String>();for(int i=0;i<c.length;i++){childitem.add(c[i]);}child.add(childitem);}class ContactsInfoAdapter extends BaseExpandableListAdapter{//-----------------Child----------------//@Overridepublic Object getChild(int groupPosition, int childPosition) {return child.get(groupPosition).get(childPosition);}@Overridepublic long getChildId(int groupPosition, int childPosition) {return childPosition;}@Overridepublic int getChildrenCount(int groupPosition) {return child.get(groupPosition).size();}@Overridepublic View getChildView(int groupPosition, int childPosition,boolean isLastChild, View convertView, ViewGroup parent) {String string = child.get(groupPosition).get(childPosition); return getGenericView(string);}//----------------Group----------------//@Overridepublic Object getGroup(int groupPosition) {return group.get(groupPosition);}				@Overridepublic long getGroupId(int groupPosition) {return groupPosition;}	@Overridepublic int getGroupCount() {return group.size();}	@Overridepublic View getGroupView(int groupPosition, boolean isExpanded,View convertView, ViewGroup parent) {String string = group.get(groupPosition);  return getGenericView(string);}//创建组/子视图  public TextView getGenericView(String s) {  // Layout parameters for the ExpandableListView  AbsListView.LayoutParams lp = new AbsListView.LayoutParams(  ViewGroup.LayoutParams.FILL_PARENT, 40);TextView text = new TextView(ContactsActivity.this);  text.setLayoutParams(lp);  // Center the text vertically  text.setGravity(Gravity.CENTER_VERTICAL | Gravity.LEFT);  // Set the text starting position  text.setPadding(36, 0, 0, 0);  text.setText(s);  return text;  }  @Overridepublic boolean hasStableIds() {// TODO Auto-generated method stubreturn false;}		@Overridepublic boolean isChildSelectable(int groupPosition, int childPosition) {// TODO Auto-generated method stubreturn true;}}
}


最后,程序执行后截图例如以下:

       

转载于:https://www.cnblogs.com/bhlsheji/p/4182934.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/259570.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【暴力】Codeforces Round #398 (Div. 2) A. Snacktower

题意不复述。 用个bool数组记录一下&#xff0c;如果某一天&#xff0c;当前剩下的最大的出现了的话&#xff0c;就输出一段。 #include<cstdio> using namespace std; int n; bool vis[100010]; int main() { // freopen("a.in","r",stdin);scanf(&…

javascript的对象创建模式---命名空间模式

javascript中对象的概念是很普遍的&#xff0c;对象是是对象&#xff0c;数组是对象&#xff0c;函数也是对象&#xff0c;字符串其实也是对象。常见的对象创建方法有对象字面量、构造函数创建。我们先来看看对象的创建还有哪些更高级的模式。 一、命名空间模式 二、模块模式 三…

把Liststring集合,编程string,并以“,”号分割

List<int> roleIdList GetRoleIdList(user.ID); string roleIdsStr ""; if (roleIdList ! null) {roleIdsStr string.Join(",", roleIdList); } 转载于:https://www.cnblogs.com/lijingran/p/6420364.html

武林外史java游戏,武林外史_网络游戏专区_腾讯游戏频道

1 、武师用防御工具1) 武卫类> 用土布制作的防护工具。阶段图片名称说明1武威带所需功力值所需力量所需技艺所需体力所需智能所需敏捷性防御力防御成功率8013013021 %武威甲所需功力值所需力量所需技艺所需体力所需智能所需敏捷性防御力防御成功率4160150021 %武威长裤所需功…

简单实现KeyChain实例

目录结构如下&#xff1a; AppDelegate.m 1 //2 // AppDelegate.m3 // KeyChain4 //5 // Created by apple on 14-12-26.6 // Copyright (c) 2014年 ll. All rights reserved.7 //8 9 #import "AppDelegate.h" 10 11 interface AppDelegate () 12 13 end 14 1…

Oracle 建立包 和 包体

--创建包create or replace package pac_stuastype cur_stu is ref cursor;procedure getStu(i in number,cur_stu out cur_stu);end pac_stu;--创建包体create or replace package body pac_stuasprocedure getStu(i in number,cur_stu out cur_stu)asnums number(10);begins…

alibaba fastjson

JSON解析器fastjson&#xff08;阿里巴巴出品&#xff0c;版本1.1.33&#xff09; import com.alibaba.fastjson.JSON; public static final Object parse(String text); // 把JSON文本parse为JSONObject或者JSONArraypublic static final JSONObject parseObject(String text)…

matlab 读取excel一列,读取excel中的数据把第一列相同的所有行数据输出成一个excel...

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼284 1113436773300.00 1113436773.30 44.55284 1113436773400.00 1113436773.40 44.55284 1113436773500.00 1113436773.50 44.55284 1113436773600.00 1113436773.60 44.55284 1113436773700.00 1113436773.70 43.77284 111343677…

js function理解

1.function是对象&#xff0c;定义一个function就会在堆中创建一个对象。生成函数如下&#xff1a; (1) var a new Function("document.write(1)"); (2) var a function(){document.write(1);} (3) function a(){ document.write(1); } (4) (function(){ document.…

锅巴H264播放器地址和说明

锅巴H264播放器地址和说明 软件说明: 此工具专门用来播放安防监控行业的H264录像文件,不管是哪个设备厂家的视频协议,只要您的录像文件里有 H264数据,就可以播放. 备注: 因为被一些事情的影响,本来做好了很多的功能, 犹豫很长时间,还是去掉了,这个播放器仅仅是演示我们的解码器…

poj2431 Expedition

直接代码、、、 #include<string.h> #include<stdio.h> #include<queue> #include<iostream> #include<algorithm> using namespace std; struct node {int fuel,dist;//bool operator < (const node&d) const{// return dist>d.dist…

JAVA入门[6]-Mybatis简单示例

初次使用Mybatis,先手写一个hello world级别的例子&#xff0c;即根据id查询商品分类详情。 一、建表 create table Category ( Id INT not null, Name varchar(80) null, constraint pk_category primary key (Id) ); 插入测试数据 INSERT INTO category VALUES (1,Fish); INS…

qpsk调制matlab实现,QPSK调制解调Matlab实现(ing待补充说明)

自写%QPSKclose all;clc;%思路&#xff1a;1.输入一组随机初始信息x[01矩阵]&#xff1b;% 2.按两两一组通过for循环判别4种组合&#xff0c;分别对应星座图4个点% 3.做星座图% a.过程中考虑过将01序列两两分开表示出来&#xff0c;不知是否有必要&#xff0c;未实现% b.考虑两…

猴子吃桃问题(南阳ACM324)

猴子吃桃问题 时间限制&#xff1a;3000 ms | 内存限制&#xff1a;65535 KB难度&#xff1a;0描述有一堆桃子不知数目&#xff0c;猴子第一天吃掉一半&#xff0c;又多吃了一个&#xff0c;第二天照此方法&#xff0c;吃掉剩下桃子的一半又多一个&#xff0c;天天如此&#…

ASP.NET MVC5 + EF6 入门教程 (6) View中的Razor使用

ASP.NET MVC5 EF6 入门教程 (6) View中的Razor使用 原文:ASP.NET MVC5 EF6 入门教程 (6) View中的Razor使用文章来源&#xff1a; Slark.NET-博客园 http://www.cnblogs.com/slark/p/mvc-5-ef-6-get-started-model.html 上一节&#xff1a;ASP.NET MVC5 EF6 入门教程 (5) M…

matlab中求三维中的多个体积,用matlab计算由下面2个几何体围成的体积: x^2+y^2+z^2=36,((x-4)/5)^2+((y-1)/3)^2+((z-2)/5)^2=1...

答&#xff1a;>> triplequad((x,y,z)1*(x.^2y.^2z.^2答&#xff1a;首先建立一个m文件 我取的名字叫 syfs0000 function ysyfs0000(x) y[9*x(1)^236*x(2)^24*x(3)^2-36; x(1)^2-2*x(2)^2-20*x(3); 16*x(1)-x(1)^3-2*x(2)^2-16*x(3)^2;]; end 然后在command window 输入 …

分析分布式服务框架

出处&#xff1a;http://www.cnblogs.com/zhangs1986/ 技术是为需求而服务的&#xff0c;分布式服务框架也同样如此&#xff0c;它不是凭空诞生的&#xff0c;也是因为有这样的需求才会有分布式服务框架这么样的东西诞生&#xff0c;在这篇blog中来详细的分析分布式服务框架诞…

PL/SQL注册码

code:j6stndb9tk72xfbhbqczcdqnjd8lyj466n number:882851 ps&#xff1a;xs374ca转载于:https://www.cnblogs.com/myblogslh/p/4203173.html

递归--基于回溯和递归的八皇后问题解法

八皇后问题是在8*8的棋盘上放置8枚皇后&#xff0c;使得棋盘中每个纵向、横向、左上至右下斜向、右上至左下斜向均只有一枚皇后。八皇后的一个可行解如图所示&#xff1a; 思路 对于八皇后的求解可采用回溯算法&#xff0c;从上至下依次在每一行放置皇后&#xff0c;进行搜索&a…

matlab emf 读取,20140219-Emf_Demo EMF 矢量图 可以读取和保存EMF 的封闭类 非常实用 matlab 238万源代码下载- www.pudn.com...

文件名称: 20140219-Emf_Demo下载收藏√ [5 4 3 2 1 ]开发工具: Visual C文件大小: 6312 KB上传时间: 2014-07-10下载次数: 2详细说明&#xff1a;EMF 矢量图 可以读取和保存EMF矢量图的封闭类非常实用-EMF EMF vector can read and save the class very useful vector cl…