我查看了 API 演示,他们有一个画廊示例,其中仅显示文本,代码仅使用 Cursor ,但是我想使用 String 数组。我怎样才能实现使用它?这是 API Demos 中示例的代码:
Cursor c = getContentResolver().query(People.CONTENT_URI, null, null, null, null);
startManagingCursor(c);
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 });