- 浏览: 561656 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
0759cxz:
good job!
Android 同时使用多个library时的问题 -
zhouxiaoli521:
lgj452555712 写道cursor 没有关闭,最好加上 ...
Android sqlite中判断某个表是否存在方法 -
lgj452555712:
cursor 没有关闭,最好加上finally 后关上fina ...
Android sqlite中判断某个表是否存在方法 -
zhouxiaoli521:
zhouxiaoli521 写道weinifk 写道publi ...
StringBuffer的setLength -
zhouxiaoli521:
weinifk 写道public static void ma ...
StringBuffer的setLength
由于google doc 很多人都打不开,故更新了源码下载地址 【源码下载】----2011-01-18
在android开发中ListView是比较常用的组件,它以列表的形式展示具体内容,并且能够根据数据的长度自适应显示。抽空把对ListView的使用做了整理,并写了个小例子,如下图。
列表的显示需要三个元素:
1.ListVeiw 用来展示列表的View。
2.适配器 用来把数据映射到ListView上的中介。
3.数据 具体的将被映射的字符串,图片,或者基本组件。
根据列表的适配器类型,列表分为三种,ArrayAdapter,SimpleAdapter和SimpleCursorAdapter
其中以ArrayAdapter最为简单,只能展示一行字。SimpleAdapter有最好的扩充性,可以自定义出各种效果。SimpleCursorAdapter可以认为是SimpleAdapter对数据库的简单结合,可以方面的把数据库的内容以列表的形式展示出来。
我们从最简单的ListView开始:
/** * @author allin * */ public class MyListView extends Activity { private ListView listView; //private List<String> data = new ArrayList<String>(); @Override public void onCreate(Bundle savedInstanceState){ super.onCreate(savedInstanceState); listView = new ListView(this); listView.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_expandable_list_item_1,getData())); setContentView(listView); } private List<String> getData(){ List<String> data = new ArrayList<String>(); data.add("测试数据1"); data.add("测试数据2"); data.add("测试数据3"); data.add("测试数据4"); return data; } }
上面代码使用了ArrayAdapter(Context context, int textViewResourceId, List<T> objects)来装配数据,要装配这些数据就需要一个连接ListView视图对象和数组数据的适配器来两者的适配工作,ArrayAdapter的构造需要三个参数,依次为this,布局文件(注意这里的布局文件描述的是列表的每一行的布局,android.R.layout.simple_list_item_1是系统定义好的布局文件只显示一行文字,数据源(一个List集合)。同时用setAdapter()完成适配的最后工作。运行后的现实结构如下图:
SimpleCursorAdapter
sdk的解释是这样的:An easy adapter to map columns from a cursor to TextViews or ImageViews defined in an XML file. You can specify which columns you want, which views you want to display the columns, and the XML file that defines the appearance of these views。简单的说就是方便把从游标得到的数据进行列表显示,并可以把指定的列映射到对应的TextView中。
下面的程序是从电话簿中把联系人显示到类表中。先在通讯录中添加一个联系人作为数据库的数据。然后获得一个指向数据库的Cursor并且定义一个布局文件(当然也可以使用系统自带的)。
01 |
/** |
02 |
* @author allin
|
03 |
*
|
04 |
*/ |
05 |
public class MyListView2 extends Activity {
|
06 |
|
07 |
private ListView listView;
|
08 |
//private List<String> data = new ArrayList<String>();
|
09 |
@Override |
10 |
public void onCreate(Bundle savedInstanceState){
|
11 |
super .onCreate(savedInstanceState);
|
12 |
|
13 |
listView = new ListView( this );
|
14 |
|
15 |
Cursor cursor = getContentResolver().query(People.CONTENT_URI, null , null , null , null );
|
16 |
startManagingCursor(cursor);
|
17 |
|
18 |
ListAdapter listAdapter = new SimpleCursorAdapter( this , android.R.layout.simple_expandable_list_item_1,
|
19 |
cursor,
|
20 |
new String[]{People.NAME},
|
21 |
new int []{android.R.id.text1});
|
22 |
|
23 |
listView.setAdapter(listAdapter);
|
24 |
setContentView(listView);
|
25 |
}
|
26 |
|
27 |
|
28 |
} |
Cursor cursor = getContentResolver().query(People.CONTENT_URI, null, null, null, null);先获得一个指向系统通讯录数据库的Cursor对象获得数据来源。
startManagingCursor(cursor);我们将获得的Cursor对象交由Activity管理,这样Cursor的生命周期和Activity便能够自动同步,省去自己手动管理Cursor。
SimpleCursorAdapter 构造函数前面3个参数和ArrayAdapter是一样的,最后两个参数:一个包含数据库的列的String型数组,一个包含布局文件中对应组件id的int型数组。其作用是自动的将String型数组所表示的每一列数据映射到布局文件对应id的组件上。上面的代码,将NAME列的数据一次映射到布局文件的id为text1的组件上。
注意:需要在AndroidManifest.xml中如权限:<uses-permission android:name="android.permission.READ_CONTACTS"></uses-permission>
运行后效果如下图:
SimpleAdapter
simpleAdapter的扩展性最好,可以定义各种各样的布局出来,可以放上ImageView(图片),还可以放上Button(按钮),CheckBox(复选框)等等。下面的代码都直接继承了ListActivity,ListActivity和普通的Activity没有太大的差别,不同就是对显示ListView做了许多优化,方面显示而已。
下面的程序是实现一个带有图片的类表。
首先需要定义好一个用来显示每一个列内容的xml
vlist.xml
01 |
<? xml version = "1.0" encoding = "utf-8" ?>
|
02 |
< LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android" |
03 |
android:orientation = "horizontal" android:layout_width = "fill_parent" |
04 |
android:layout_height = "fill_parent" >
|
05 |
|
06 |
|
07 |
< ImageView android:id = "@+id/img" |
08 |
android:layout_width = "wrap_content" |
09 |
android:layout_height = "wrap_content" |
10 |
android:layout_margin = "5px" />
|
11 |
|
12 |
< LinearLayout android:orientation = "vertical" |
13 |
android:layout_width = "wrap_content" |
14 |
android:layout_height = "wrap_content" >
|
15 |
|
16 |
< TextView android:id = "@+id/title" |
17 |
android:layout_width = "wrap_content" |
18 |
android:layout_height = "wrap_content" |
19 |
android:textColor = "#FFFFFFFF" |
20 |
android:textSize = "22px" />
|
21 |
< TextView android:id = "@+id/info" |
22 |
android:layout_width = "wrap_content" |
23 |
android:layout_height = "wrap_content" |
24 |
android:textColor = "#FFFFFFFF" |
25 |
android:textSize = "13px" />
|
26 |
|
27 |
</ LinearLayout >
|
28 |
|
29 |
|
30 |
</ LinearLayout > |
下面是实现代码:
01 |
/** |
02 |
* @author allin
|
03 |
*
|
04 |
*/ |
05 |
public class MyListView3 extends ListActivity {
|
06 |
|
07 |
|
08 |
// private List<String> data = new ArrayList<String>();
|
09 |
@Override |
10 |
public void onCreate(Bundle savedInstanceState) {
|
11 |
super .onCreate(savedInstanceState);
|
12 |
|
13 |
SimpleAdapter adapter = new SimpleAdapter( this ,getData(),R.layout.vlist,
|
14 |
new String[]{ "title" , "info" , "img" },
|
15 |
new int []{R.id.title,R.id.info,R.id.img});
|
16 |
setListAdapter(adapter);
|
17 |
}
|
18 |
|
19 |
private List<Map<String, Object>> getData() {
|
20 |
List<Map<String, Object>> list = new ArrayList<Map<String, Object>>();
|
21 |
|
22 |
Map<String, Object> map = new HashMap<String, Object>();
|
23 |
map.put( "title" , "G1" );
|
24 |
map.put( "info" , "google 1" );
|
25 |
map.put( "img" , R.drawable.i1);
|
26 |
list.add(map);
|
27 |
|
28 |
map = new HashMap<String, Object>();
|
29 |
map.put( "title" , "G2" );
|
30 |
map.put( "info" , "google 2" );
|
31 |
map.put( "img" , R.drawable.i2);
|
32 |
list.add(map);
|
33 |
|
34 |
map = new HashMap<String, Object>();
|
35 |
map.put( "title" , "G3" );
|
36 |
map.put( "info" , "google 3" );
|
37 |
map.put( "img" , R.drawable.i3);
|
38 |
list.add(map);
|
39 |
|
40 |
return list;
|
41 |
}
|
42 |
} |
使用simpleAdapter的数据用一般都是HashMap构成的List,list的每一节对应ListView的每一行。HashMap的每个键值数据映射到布局文件中对应id的组件上。因为系统没有对应的布局文件可用,我们可以自己定义一个布局vlist.xml。下面做适配,new一个SimpleAdapter参数一次是:this,布局文件(vlist.xml),HashMap的 title 和 info,img。布局文件的组件id,title,info,img。布局文件的各组件分别映射到HashMap的各元素上,完成适配。
运行效果如下图:
有按钮的ListView
但是有时候,列表不光会用来做显示用,我们同样可以在在上面添加按钮。添加按钮首先要写一个有按钮的xml文件,然后自然会想到用上面的方法定义一个适配器,然后将数据映射到布局文件上。但是事实并非这样,因为按钮是无法映射的,即使你成功的用布局文件显示出了按钮也无法添加按钮的响应,这时就要研究一下ListView是如何现实的了,而且必须要重写一个类继承BaseAdapter。下面的示例将显示一个按钮和一个图片,两行字如果单击按钮将删除此按钮的所在行。并告诉你ListView究竟是如何工作的。效果如下:
vlist2.xml
01 |
<? xml version = "1.0" encoding = "utf-8" ?>
|
02 |
< LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android" |
03 |
android:orientation = "horizontal" |
04 |
android:layout_width = "fill_parent" |
05 |
android:layout_height = "fill_parent" >
|
06 |
|
07 |
|
08 |
< ImageView android:id = "@+id/img" |
09 |
android:layout_width = "wrap_content" |
10 |
android:layout_height = "wrap_content" |
11 |
android:layout_margin = "5px" />
|
12 |
|
13 |
< LinearLayout android:orientation = "vertical" |
14 |
android:layout_width = "wrap_content" |
15 |
android:layout_height = "wrap_content" >
|
16 |
|
17 |
< TextView android:id = "@+id/title" |
18 |
android:layout_width = "wrap_content" |
19 |
android:layout_height = "wrap_content" |
20 |
android:textColor = "#FFFFFFFF" |
21 |
android:textSize = "22px" />
|
22 |
< TextView android:id = "@+id/info" |
23 |
android:layout_width = "wrap_content" |
24 |
android:layout_height = "wrap_content" |
25 |
android:textColor = "#FFFFFFFF" |
26 |
android:textSize = "13px" />
|
27 |
|
28 |
</ LinearLayout >
|
29 |
|
30 |
|
31 |
< Button android:id = "@+id/view_btn" |
32 |
<span style=
|
发表评论
-
Android NDK开发环境搭建_r8
2014-04-23 16:32 1078本文主内容: 1、 Android NDK 安装 2、 ... -
Android java.lang.VerifyError 异常解决办法
2014-04-01 13:58 4587通常这个异常的问题出现在jar包上 我的情况是 sdk ... -
Android —— 关于ADT 17的BuildConfig.DEBUG
2014-03-21 11:02 1155在日常开发中,我们使用android.util.Lo ... -
Android 让多个Fragment 切换时不重新实例化
2013-12-05 18:48 1457在项目中需要进行Fragment的切换,一直都是用repla ... -
android学习—— context 和 getApplicationContext()
2013-09-22 11:08 1930在android中常常会遇到与context有关的内容 浅 ... -
Android requestFeature() must be called before adding content
2013-07-08 17:18 2367E/AndroidRuntime( 408): androi ... -
Android onActivityResult和横屏
2013-06-20 16:48 1830做一个项目 页面强制横屏 两个activity需要交互 现 ... -
Android 无法加载fragment的问题
2013-06-17 14:42 2450在项目中继承了fragment 重写了构造函数 make ... -
android源码解读一(Context)
2013-04-27 19:16 1791Context类 Context是一个抽象类 publi ... -
Android 4.1 动态加载APK中的资源
2013-04-24 17:29 4185*** is not owned by the curr ... -
Android ADT中增大AVD内存后无法启动:emulator failed to allocate memory 8
2013-04-15 15:45 1798过程中,增大对应AVD的 ... -
Android下面的MD5加密
2013-04-08 12:17 997网上关于android下MD5加密的资料很多,但是测试了下 ... -
Android 调用系统应用程序信息(Application Info)界面
2013-03-15 18:30 1269“Android系统设置->应用程序->管理应用 ... -
Android Dialog背景透明和黑暗度
2013-03-14 18:20 4094设置透明度,主要设置的是dialog自身的透明度 ... -
全局监听SCREEN_ON和SCREEN_OFF的替代方法--监听屏幕解锁事件
2013-03-08 12:17 3038在做一个程序的时候,需要时刻保持某一服务是启动的, ... -
Android 退出应用程序
2013-01-21 10:53 922android.os.Process.killProcess ... -
Android控件WebView(浏览器)常用功能(图片、缩放)例子介绍
2012-11-06 11:03 2546Android系统默认提供WebView控件(view)来在应 ... -
Android ProgressBar使用.9图在部分android手机上显示异常!
2012-11-05 10:18 2167写道 我使用的是progressbar.xml配置文 ... -
Android 同时使用多个library时的问题
2012-10-29 12:40 1612剧情是这样,我的app要使用两个library,如:Li ... -
android圆形进度条ProgressBar颜色设置
2012-07-29 15:14 1360总结的挺全面 http://aichixihongshi.i ...
相关推荐
在Android应用开发中,ListView是十分常见且重要的一个控件,它主要用于展示大量可滚动的数据列表。...提供的文档“Android ListView详解.doc”和代码资源“allin.dev.zip”将更深入地引导你理解并运用ListView。
在Android开发中,ListView是一个非常重要的组件,它用于展示大量数据的列表形式,通常用于创建如联系人列表、消息列表等界面。本篇文章将详细解析ListView的使用,并提供一个简单的ListView实现示例。 首先,我们...
在Android开发中,ListView是一个非常重要的组件,它用于展示大量数据集合,并且支持滚动操作。ListView的使用不仅可以节省屏幕空间,还能提供良好的用户体验。在这个源码实例中,我们将深入探讨ListView的实现,...
在Android开发中,ListView是一个非常重要的组件,它用于以列表形式展示内容,可自适应数据长度,提供良好的滚动性能和用户交互体验。ListView的核心在于它如何有效地显示和管理大量数据,通过结合适配器(Adapter)...
android listview事件详解。
Android ListView 详解,适配器adapter详解 博客地址:http://blog.csdn.net/csdnyuandaimaxuexi/article/details/48808303
在Android开发中,ListView是一个非常重要的组件,它用于展示大量数据列表,用户可以通过滚动来查看更多的条目。本文将从初级到高级详细讲解ListView的使用,包括基础设置、复杂列表的构建、自定义适配器以及如何...
### ListView详解 #### 一、概述 在Android开发过程中,`ListView`是一个极其重要的UI组件,主要用于以列表的形式展示大量数据。与普通的`View`不同,`ListView`能够根据数据的大小自动调整显示内容的长度,非常...
在Android所有常用的原生控件当中,用法最复杂的应该就是ListView了,它专门用于处理那种内容元素很多,手机屏幕无法展示出所有内容的情况。 ?? ListView可以使用列表的形式来展示内容,超出屏幕部分的内容只需要...
在Android开发中,ListView是一个非常重要的组件,常用于展示大量数据的列表形式。它可以根据数据的长度自动调整显示,提供良好的用户体验。以下是对ListView组件及其使用的详细解释。 首先,ListView的构成包含三...
在Android应用开发中,ListView是显示大量数据列表的常用组件,它允许用户滚动查看条目,具有很高的可定制性。本篇文章将深入解析ListView的源码,帮助开发者更好地理解和运用这个核心组件。 首先,ListView继承自...
在Android开发中,ListView是一个非常重要的组件,常用于展示大量数据并支持滚动。它以列表形式展示内容,可以根据数据的长度动态调整显示。ListView的工作原理是通过适配器(Adapter)将数据源与ListView的视图...
android 列表视图组件 listview详解