我在SO上浏览了很多类似的问题,但似乎都无法解决。因此,我试图使用SimpleCursorAdapter使ListActivity与SQLite进行通信。我已经通过调试器运行了代码,一切看起来都不错,但是我的listView为空。数据库中肯定有东西,我已经注销了游标中至少包含正确数量列的内容。
我是Android开发人员的新手,我很清楚自己可能会遗漏一些确实很明显的东西,但是如果您能指出的话,那将是很棒的。
以下是我的活动
public class ListItemsActivity extends ListActivity {
private RevisionItemsDataSource datasource;
private SimpleCursorAdapter itemAdapter;
private Button addButton;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
datasource = new RevisionItemsDataSource(this);
datasource.open();
setContentView(R.layout.revision_list);
Cursor cursor = datasource.fetchAll();
String[] columns = new String[] {
MySQLiteHelper.COLUMN_QUESTION,
MySQLiteHelper.COLUMN_ANSWER
};
int[] to = new int[] {
R.id.questionText,
R.id.answerText
};
itemAdapter = new SimpleCursorAdapter(
this, R.layout.revision_item_view,
cursor, columns,
to, 0);
this.setListAdapter(itemAdapter);
}
}
这是列表XML
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<ListView
android:id="@android:id/list"
android:layout_width="wrap_content"
android:layout_height="0dip"
android:layout_weight="1" />
<Button
android:id="@+id/addItemButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="Add" />
</LinearLayout>
以及XML用于单项格式化
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/questionText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:id="@+id/answerText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView" />
</LinearLayout>
最后是数据源对象
public class RevisionItemsDataSource {
private static final String DB_TAG = "DATABASE";
// Database fields
private SQLiteDatabase database;
private MySQLiteHelper dbHelper;
private String[] allColumns = {
MySQLiteHelper.COLUMN_ID,
MySQLiteHelper.COLUMN_QUESTION,
MySQLiteHelper.COLUMN_ANSWER
};
public RevisionItemsDataSource(Context context) {
dbHelper = new MySQLiteHelper(context);
}
public RevisionItemsDataSource open() throws SQLException {
database = dbHelper.getWritableDatabase();
return this;
}
public Cursor fetchAll() {
Cursor cursor = database.query(MySQLiteHelper.TABLE_ITEMS,
allColumns, null, null, null, null, null);
if(cursor != null) {
cursor.moveToFirst();
}
return cursor;
}
}
最佳答案
好的,错误警报...您知道我说过数据库中有东西,没有。我重新创建了仿真器,因此用它来破坏数据库。
我现在正正式给自己打耳光。
关于android - 使用SimpleCursorAdapter的空白ListView,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20877864/