我在一个显示帐户列表视图的活动中实现了一个上下文操作栏(CAB)。目前,通过CAB的唯一选择是删除帐户。但是,当用户长时间单击某个帐户并选择删除项目时,我无法弄清楚如何获取对所选帐户的引用。这是点击监听器代码:
mAccountListView.setOnItemLongClickListener(new AdapterView.OnItemLongClickListener() {
@Override
public boolean onItemLongClick(AdapterView<?> parent, View view, int position, long id) {
if (mActionMode != null) {
return false;
} else {
// Start the CAB using the ActionMode.Callback already defined
mActionMode = startSupportActionMode(mActionModeCallback);
// Get name to set as title for action bar
Account account = (Account) mAccountAdapter.getItem(position);
mActionMode.setTitle(account.getName());
mAccountListView.setSelection(position);
return true;
}
}
});
这是onItemClicked:
// Called when the user selects a contextual menu item
@Override
public boolean onActionItemClicked(ActionMode mode, MenuItem item) {
switch (item.getItemId()) {
case R.id.action_delete_account:
mode.finish(); // Action picked, so close the CAB
return true;
default:
return false;
}
}
在第二个函数中,mode.finish()
以上我想删除数据库中的帐户以及适配器。但是,我无法弄清楚如何引用它。我试过了:
Account acc = (Account) mAccountListView.getSelectedItem();
但是我获得了该帐户的空值。我也尝试过使用AdapterContextMenuInfo,但在调用item.getInfo()
时我也得到一个null对象。我在哪里弄错了?我不想求助于存储每次选择项目时都会更改的静态变量。