我有一个扩展 BaseExpandableListAdapter 的类。
公共类 ExpandableListAdapter 扩展 BaseExpandableListAdapter
在列表视图中,我的项目被重复使用,我想防止这种情况发生。
我了解到使用 IGNORE_ITEM_VIEW_TYPE 会阻止操作系统重用它们,但我必须在 getItemViewType 方法中使用它。
当我添加此代码时:
@Override
public int getItemViewType(int position) {
return 0;
}
我有以下错误:
方法不会覆盖其超类中的方法。
如何使用该设置来防止我的 ExpandableList 重复使用项目?