首页 > 移动平台 > 详细

android 部分原生Adapter简介之SimpleCursorAdapter

时间:2014-06-08 15:52:48      阅读:430      评论:0      收藏:0      [点我收藏+]

SimpleCursorAdapter用于将一个Cursor绑定到一个AdapterView,并使用一个布局来定义每个行/条目的UI。每个行当视图的内容是底层Cursor中对应行的列值进行填充的。

SimpleCursorAdapter是通过传入当前的上下文、用于每个条目的一个布局资源、一个代表要显示的数据的Cursor和两个整数数组进行构建的,这两个数组的其中一个包含了要使用的列(包含资源数据)的索引,另一个(同样大小的)数组存储资源ID,用于指定布局内的哪些视图应该用来显示相应的列的内容(就是你要把数据显示在哪个组件上)。

String[] strArr = new String[]{"str1","str2"};
		int toLayoutIDs = new int[]{R.id.text1,R.id.text2};
		SimpleCurosorAdapter myAdapter = new SimpleCursorAdapter(MainActivity.this,R.layout.mysimplecusorlayout,
				cursor,
				fromColums,
				toLayoutIDs
				);



android 部分原生Adapter简介之SimpleCursorAdapter,布布扣,bubuko.com

android 部分原生Adapter简介之SimpleCursorAdapter

原文:http://blog.csdn.net/howlaa/article/details/28698511

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!