所以我在适配器中有以下代码:
@Override
public boolean isEnabled(int position)
{
GeneralItem item = super.getItem(position);
boolean retVal = true;
if (item != null)
{
if (currSection != some_condition)
retVal = !(item.shouldBeDisabled());
}
return retVal;
}
public boolean areAllItemsEnabled()
{
return false;
}
这里的问题是:如果我在初始绑定期间禁用了我的项目,那么现在我在屏幕上引发该事件,无论如何都需要启用它们.执行该操作后,我是否会重新全部绑定?
例如:
onCreate{
// create and bind to adapter
// this will disable items at certain positions
}
onSomeClick{
I need the same listview with same items available for click no matter what the conditions of positions are, so I need them all enabled. What actions should I call on the adapter?
}
问题是我的列表视图也可能很长.它应该支持6000个项目.因此,重新绑定它当然不是一种选择.
谢谢,
解决方法:
适配器上有一个实例变量怎么办:
boolean ignoreDisabled = false;
然后在areAllItemsEnabled中:
public boolean areAllItemsEnabled() {
return ignoreDisabled;
}
然后在isEnabled的开头:
public boolean isEnabled(int position) {
if (areAllItemsEnabled()) {
return true;
}
... rest of your current isEnabled method ...
}
然后,可以通过适当地设置ignoreDisabled并在ListView上调用invalidate来在两种模式之间切换.
注意,可能不需要添加isEnabled.似乎更完整了.