Android ApiDemos示例解析(120):Views->Gallery->2. People
程序员文章站
2022-03-30 08:55:52
...
本例使用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
SpinnerAdapter adapter = new SimpleCursorAdapter(this,
// Use a template that displays a text view
android.R.layout.simple_gallery_item,
// Give the cursor to the list adatper
c,
// Map the NAME column in the people database to...
new String[] {People.NAME},
// The "text1" view defined in the XML template
new int[] { android.R.id.text1 });
Gallery g = (Gallery) findViewById(R.id.gallery);
g.setAdapter(adapter);
本例Adapter 使用的View为TextView (id 为 android.R.id.text1) ,因此 Gallery显示的为联系人的人名。
上一篇: php实现购物车功能的方法
下一篇: D1学习
推荐阅读
-
Android ApiDemos示例解析(198):Views->WebView
-
Android ApiDemos示例解析(191):Views->Seek Bar
-
Android ApiDemos示例解析(186):Views->Radio Group
-
Android ApiDemos示例解析(192):Views->Spinner
-
Android ApiDemos示例解析(182):Views->Progress Bar->1. Incremental
-
Android ApiDemos示例解析(112):Views->Expandable Lists->1. Custom Adapter
-
Android ApiDemos示例解析(107):Views->Controls->1. Light Theme
-
Android ApiDemos示例解析(99):Views->Auto Complete->1. Screen Top
-
Android ApiDemos示例解析(120):Views->Gallery->2. People
-
Android ApiDemos示例解析(168):Views->Lists->1. Array