码迷,mamicode.com
首页 > 移动开发 > 详细

android 部分原生Adapter简介之SimpleCursorAdapter

时间:2014-06-08 15:53:18      阅读:251      评论:0      收藏:0      [点我收藏+]

标签:android   c   class   blog   code   java   

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

标签:android   c   class   blog   code   java   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!