在我的 android 应用程序中,有一个从 cursor(db) 填充的列表视图。它启用了多项选择,并且 actionbarsherlock 的动作模式对选定项目进行了操作。
我被困在这种情况下,
我从列表视图中选择了两个项目,动作模式说选择了两个项目。现在,如果我单击返回,则操作模式完成,但 checkitem 保持选中状态。如何在后退键上取消选中所有这些,记住 listview.getChildCount() 只会返回可见项目?
private static SparseBooleanArray checkedItemsArray;
@Override
public void onItemClick(AdapterView<?> arg0, View v, int position, long arg3)
{
boolean isOneRowChecked = false;
CheckableRelativeLayout r;
checkedItemsArray = listView.getCheckedItemPositions();
for (int i = 0; i < listView.getChildCount(); i++)
{
r = (CheckableRelativeLayout) listView.getChildAt(i);
if (r != null && r.isChecked())
{
r.setBackgroundColor(Color.DKGRAY);
isOneRowChecked = true;
} else
{
r.setBackgroundColor(Color.BLACK);
}
}
mActionMode = OtherActivity.this.startActionMode(mActionModeCallback);
if (!isOneRowChecked && mActionMode != null)
{
mActionMode.finish();
checkedItemsArray = null;
}
}
我的活动也在实现 OnScrollListener,所以
@Override
public void onScroll(AbsListView view, int firstVisibleItem, int visibleItemCount, int totalItemCount)
{
int i = firstVisibleItem;
if (checkedItemsArray != null)
{
for (int k = 0; k < visibleItemCount; k++)
{
CheckableRelativeLayout r = (CheckableRelativeLayout) listView.getChildAt(k);
if (checkedItemsArray.get(i))
{
r.setChecked(true);
r.setBackgroundColor(Color.DKGRAY);
} else
{
r.setChecked(false);
r.setBackgroundColor(Color.BLACK);
}
i++;
}
}
else
{
for (int k = 0; k < visibleItemCount; k++)
{
listView.setItemChecked(k, false);
CheckableRelativeLayout r = (CheckableRelativeLayout) listView.getChildAt(k);
r.setChecked(false);
r.setBackgroundColor(Color.BLACK);
}
}
}