我有一个ListFragment,在其中将CursorAdapter添加到ListView,并且希望能够单击几行以使用上下文操作栏。我使用SherlockActionbar,当我使用简单的ArrayAdapter时,它可以正常工作。但是当我切换到CursorAdapter时,它中断了。我不能选择多行,只能选择一行。知道为什么会发生吗?

onActivityCreated中,我设置了列表:

@Override
public void onActivityCreated(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    mActionMode = null;
    mListView = getListView();
    FinTracDatabase database = mDatabaseProvider.get();
    Cursor cursor = database.getTransactionCursor(false);
    mCursorAdapter = new TransactionListAdapter(getSherlockActivity(), cursor);
    mListView.setAdapter(mCursorAdapter);
    mListView.setItemsCanFocus(false);
    mListView.setOnItemClickListener(this);
    mListView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE);
}


这是我的Adapter

private class TransactionListAdapter extends CursorAdapter {

    public TransactionListAdapter(Context context, Cursor cursor) {
        super(context, cursor, 0);
    }

    @Override
    public void bindView(View view, Context context, Cursor cursor) {
        bindToExistingView(view, cursor);
    }

    private void bindToExistingView(View view, Cursor cursor) {
        CheckedTextView amountView = (CheckedTextView) view;
        amountView.setText(cursor.getString(cursor.getColumnIndex(Transactions.TITLE)));
    }

    @Override
    public View newView(Context arg0, Cursor arg1, ViewGroup arg2) {
        LayoutInflater layoutInflater = getSherlockActivity().getLayoutInflater();
        View view = layoutInflater.inflate(android.R.layout.simple_list_item_multiple_choice, arg2, false);
        bindToExistingView(view, arg1);
        return view;
    }

}


最后是onClickListener:

@Override
public void onItemClick(AdapterView<?> arg0, View arg1, int arg2, long arg3) {
    SparseBooleanArray checked = mListView.getCheckedItemPositions();
    boolean hasCheckedElement = true;
    for (int i = 0; i < checked.size() && !hasCheckedElement; i++) {
        hasCheckedElement = checked.valueAt(i);
    }

    if (hasCheckedElement) {
        if (mActionMode == null) {
            mActionMode = getSherlockActivity().startActionMode(new SelectingActionMode());
        }
    } else {
        if (mActionMode != null) {
            mActionMode.finish();
        }
    }
}


如果我将适配器切换为简单的ArrayAdapter,则工作正常。

new ArrayAdapter<String>(this,
            android.R.layout.simple_list_item_multiple_choice, new String[]{"A", "B", "C"})


我绝望了,我也不知道为什么会这样。

最佳答案

为了使ListView.CHOICE_MODE_MULTIPLE模式正常工作,适配器中的每个项目都必须从getItemId()方法返回唯一的值。

您用于适配器的游标是在以下行上产生的:

  FinTracDatabase database = mDatabaseProvider.get();
  Cursor cursor = database.getTransactionCursor(false);


您能否检查其“ _id”列中每一行是否具有唯一值?我怀疑它们都共享相同的值,从而导致您看到的行为。

关于android - CursorAdapter中断CHOICE_MODE_MULTIPLE选项,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/11953888/

10-09 09:21