我正在关注本教程,因为它正是我所需要的:
http://www.marvinlabs.com/2010/10/custom-listview-ability-check-items/
不幸的是,他们的网站已关闭,所以我使用的是缓存版本:
我已完成RelativeLayout
为我的项目行创建自定义的步骤。我在代码中遇到了一些错误,我不知道如何修复它们。例如,在这些行上:
for (Checkable c : checkableViews) {
// Pass the information to all the child Checkable widgets
c.setChecked(isChecked);
}
我收到此错误:
Type mismatch: cannot convert from element type Object to Checkable
以前没用过Checkable
,不知道效果如何。
有人可以帮助实现这一点吗?