1

我正在开发一个允许用户在排练戏剧时创建笔记的应用程序。用户可以在列表视图中查看他们创建的笔记,并根据需要编辑和删除它们。

以用户创建 3 个笔记为例。在数据库中,row_id 将是 1、2 和 3。所以当用户在列表视图中查看注释时,它们也将按照 1、2、3 的顺序(在我增加值之前最初是 0、1、2) . 因此用户可以从数据库中查看和删除正确的行。

当用户决定删除笔记时,问题就出现了。假设用户删除了位置 2 的便笺。因此我们的数据库将具有 row_id 的 1 和 3。但在列表视图中,它们将位于位置 1 和 2。因此,如果用户单击列表视图中位置 2 的便笺它应该返回数据库中 row_id 为 3 的行。但是它会尝试查找不存在的 row_id 2 ,因此会崩溃。

鉴于用户在列表视图中的选择,我需要知道如何获取相应的 row_id。下面是执行此操作的代码:

// When the user selects "Delete" in context menu
public boolean onContextItemSelected(MenuItem item) {
    AdapterContextMenuInfo info = (AdapterContextMenuInfo) item
            .getMenuInfo();
    switch (item.getItemId()) {
    case DELETE_ID:
        deleteNote(info.id + 1);
        return true;
    }
    return super.onContextItemSelected(item);
}

// This method actually deletes the selected note
private void deleteNote(long id) {
    Log.d(TAG, "Deleting row: " + id);
    mNDbAdapter.deleteNote(id);
    mCursor = mNDbAdapter.fetchAllNotes();
    startManagingCursor(mCursor);
    fillData();
    // TODO: Update play database if there are no notes left for a line.
}

// When the user clicks on an item, display the selected note
protected void onListItemClick(ListView l, View v, int position, long id) {
    super.onListItemClick(l, v, position, id);
    viewNote(id, "", "", true);

}

// This is where we display the note in a custom alert dialog. I've ommited
// the rest of the code in this method because the problem lies in this line:
// "mCursor = mNDbAdapter.fetchNote(newId);"
// I need to replace "newId" with the row_id in the database.
private void viewNote(long id, String defaultTitle, String defaultNote,
        boolean fresh) {

    final int lineNumber;
    String title;
    String note;

    id++;

    final long newId = id;

    Log.d(TAG, "Returning row: " + newId);

    mCursor = mNDbAdapter.fetchNote(newId);

    lineNumber = (mCursor.getInt(mCursor.getColumnIndex("number")));
    title = (mCursor.getString(mCursor.getColumnIndex("title")));
    note = (mCursor.getString(mCursor.getColumnIndex("note")));

            .
            .
            .
}

如果您希望我再显示代码,请告诉我。这似乎很简单,但我找不到解决方案。

谢谢!

编辑

我解决了这个问题。我回答了下面的问题。

4

1 回答 1

0

好的,我解决了这个问题(至少暂时)。

问题是我使用的是我自己创建的适配器类。它没有跟踪列表中的哪个项目与数据库中的项目相对应。我现在使用 SimpleCursorAdapter 重写了“fillData()”方法。

这是 OLD 实现,带有我自己的自定义适配器:

private void fillData() {
    String note;
    notes = new ArrayList<String>();

    // Populate arraylist with database data
    if (mCursor.moveToFirst()) {
        do {
            // Get current row's character and line
            note = mCursor.getString(mCursor.getColumnIndex("title"));
            Log.d(TAG, "Adding note: " + note);
            notes.add(note);
        } while (mCursor.moveToNext());
    }

    // Fill list with our custom adapter
    NoteAdapter adapter = new NoteAdapter(this, R.layout.note_row_layout,
            notes);
    setListAdapter(adapter);
}

这是用 SimpleCursorAdapter 重写的同一个类:

private void fillData() {
    mFrom = new String[] { NoteDbAdapter.KEY_TITLE };
    mTo = new int[] { R.id.textNote };

    // Now create an array adapter and set it to display using our row
    SimpleCursorAdapter adapter = new SimpleCursorAdapter(this,
            R.layout.note_row_layout, mCursor, mFrom, mTo);

    setListAdapter(adapter);
}

我创建自己的适配器类的原因是因为我在列表的每一行中都有一个复选框(用于多次删除)。

我现在的问题是,当用户决定在使用 SimpleCursorAdapter 时进行多次删除时,我是否能够获取每个复选框的状态(无论是否选中)?

谢谢。

于 2012-12-07T23:01:54.533 回答