Tablelayout和游标

时间:2011-12-06 10:35:52

标签: android android-cursor android-tablelayout

是否可以从游标中提取tablelayout中的行?如果是,怎么样?

我的光标。

cursor = db.rawQuery("SELECT _id, countryName , capitalName FROM country WHERE countryName LIKE ?",new String[] { "%" });
adapter = new SimpleCursorAdapter(this, R.layout.capital_list_item,cursor, new String[] { "countryName" , "capitalName"},new int[] { R.id.countryName, R.id.capitalName });

1 个答案:

答案 0 :(得分:2)

简短而甜蜜, ..您不能在TableLayout中使用光标适配器

您只能在ListView,Spinner和GridView中使用Cursor Adapter ......