首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 操作系统 >

Android ApiDemos示范解析(120):Views->Gallery->2. People

2014-05-28 
Android ApiDemos示例解析(120):Views-Gallery-2. People本例使用SimpleCursorAdapter 作为Gallery控件

Android ApiDemos示例解析(120):Views->Gallery->2. People

本例使用SimpleCursorAdapter 作为Gallery控件的数据源。 SimpleCursorAdapter 从设备通讯录读取联系人 ,Cursor用法可以参见Android ApiDemos示例解析(10):App->Activity->QuickContactsDemo 和Android ApiDemos示例解析(113):Views->Expandable Lists->2. Cursor(People)

SimpleCursorAdapter 的构造函数如下

public SimpleCursorAdapter(Context context, int layout, Cursor c, String[] from, int[] to)

context: context对象,可以使用activity。layout: layout 资源ID simple_gallery_item.xml cursor: cursor对象,本例为通讯录cursor.from: 需要显示的列名数组to: 列对应的View 的id


热点排行