我正在尝试为listview创建一个上下文菜单,因此当用户长按一行时,会显示上下文菜单,当用户选择一个选项时,该行会被选中。但是,选择了很多行,它会重复列表视图中其他行的模式选择。
当我单击一行时也会发生同样的情况。 IDK,如果它是视图回收的问题,或什么。
如何解决这两个问题,因为首先在onContextItemSelected(MenuItem item)
内处理,所以我通过操纵MenuItem
对象来管理行,第二个在AdapterView.OnItemClickListener
处理。
BTW,我正在使用CursorAdapter来填充ListView。
感谢。
这是我的代码:
// Listener for the click on the items in the ListView
mListViewListener = new AdapterView.OnItemClickListener()
{
// When the user clicks some item, the Activity that shows the available dates will be shown
@Override
public void onItemClick(AdapterView<?> adapterView, View view, int position, long arg3)
{
view.setBackgroundColor(0xff333333);
}
};
// Handle the LongClick on the row
@Override
public void onCreateContextMenu(ContextMenu menu, View view, ContextMenuInfo menuInfo)
{
super.onCreateContextMenu(menu, view, menuInfo);
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.contact_options, menu);
}
@Override
public boolean onContextItemSelected(MenuItem item)
{
AdapterContextMenuInfo info = (AdapterContextMenuInfo) item.getMenuInfo();
switch(item.getItemId())
{
case R.id.context_menu_item:
info.targetView.setBackgroundColor(0xff333333);
default:
return super.onContextItemSelected(item);
}
}
答案 0 :(得分:1)
CursorAdapter中的这样的东西应该可以工作:
private Set<String> mSelectedContactNumbers = new HashSet<String>();
@Override
public void bindView(View view, Context context, final Cursor cursor)
{
final String contactNumber = cursor.getString(cursor.getColumnIndex("contact_number"));
view.setOnClickListener(new View.OnClickListener()
{
@Override
public void onClick(View v)
{
if (!mSelectedContactNumbers.remove(contactNumber)) {
mSelectedContactNumbers.add(contactNumber);
}
notifyDataSetChanged();
}
});
if (mSelectedContactNumbers.contains(contactNumber)) {
view.setBackgroundColor(0xff333333);
} else {
view.setBackgroundColor(0);
}
createView(view, cursor);
}
这只是一个快速的解决方案。您可以在适配器中创建一个可以从OnItemClickListener调用的toggleSelected函数。这样会更好一点。