Cursor cursor = db.rawQuery("select _id,NAME"
+ "from table ", null);
SimpleCursorAdapter adapter = new SimpleCursorAdapter(this, R.layout.activity_item,
cursor, new String[] { "_id", "NAME" }, new int[]{ R.id.item_ID, R.id.item_Name });
注意:SimpleCursorAdapter中字段名要和Cursor中字段名大小写一致