是否可以从游标中填充表格布局中的行?如果是,怎么办?

我的光标。

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 });

最佳答案

简短而甜蜜地,不。您不能在TableLayout中使用Cursor Adapter

您只能在ListView,Spinner和GridView中使用游标适配器...

09-11 10:12