以下是ExpandableListView 收缩的简单动画效果 1 /* 2 * Copyright (C) 2014 Gary Guo 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License");...
分类:
其他好文 时间:
2015-04-26 06:57:28
阅读次数:
524
该控件的修改时根据PullToRefreshList的机制修改下面是对ExpandableListView的扩展package com.up91.gwy.view.componet;import java.lang.reflect.InvocationTargetException;import j...
分类:
移动开发 时间:
2015-04-25 16:26:36
阅读次数:
264
Android实现上拉加载更多功能以及下拉刷新功能,采用了目前比较火的PullToRefresh,他是目前实现比较好的下拉刷新的类库。目前他支持的控件有:ListView,ExpandableListView,GridView,WebView等。下载地址:https://github.com/chr...
分类:
移动开发 时间:
2015-04-24 22:35:52
阅读次数:
177
点击显示展开项,先看效果:
开始,1.先搞个XML显示主界面:
main_activity.xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout...
分类:
移动开发 时间:
2015-04-19 17:58:06
阅读次数:
146
全代码布局,使用了TextView、EditText、ScrollView、Spinner、ArrayAdapter、LinearLayout、RelativeLayout、ExpandableListView、BaseExpandableListAdapter等控件,其中ExpandableListView是属于复杂的控件。...
分类:
其他好文 时间:
2015-04-16 23:45:45
阅读次数:
169
/** 记录一下方便查阅*/有时候,使用ListView并不能满足应用程序所需要的功能。有些应用程序需要多组ListView,这时候我们就要使用一种新的控件ExpandableListView——可以扩展的ListView。它的作用就是将ListView进行分组。就好像我们使用QQ的时候,有“我的好...
分类:
其他好文 时间:
2015-04-15 09:33:15
阅读次数:
155
ExpandableListView有图有真相:源代码下载:下面提供了四个下载网址(总有一个网址可以让你下载):http://www.400gb.com/file/90351124http://zfl33.7958.com/down_19699552.htmlhttp://d.119g.com/s/...
分类:
移动开发 时间:
2015-04-13 12:14:56
阅读次数:
148
本文採用一个Demo来展示Android中ExpandableListView控件的使用,如怎样在组/子ListView中绑定数据源。直接上代码例如以下:程序结构图:layout文件夹下的 main.xml 文件源代码例如以下: 包 com.andyidea.demo中C...
分类:
移动开发 时间:
2015-04-02 14:47:55
阅读次数:
155
1. ExpandableListView简介
下拉列表(可扩展的列表控件)在App应用非常常见,在Android开发中是我们必须掌握的一个控件,下面就来介绍一下ExpandableListView这个控件的开发。
ExpandableListView分为组列表项和子列表项,单击组列表项,会显示这组里所有的子列表项。和ListView一样,它也是通过Adapter数据适配器完成数据与显...
分类:
移动开发 时间:
2015-03-28 01:16:17
阅读次数:
211
本文採用一个Demo来展示Android中ExpandableListView控件的使用,如怎样在组/子ListView中绑定数据源。直接上代码例如以下:程序结构图:layout文件夹下的 main.xml 文件源代码例如以下: 包 com.andyidea.demo中C...
分类:
移动开发 时间:
2015-03-11 14:37:22
阅读次数:
145