如何在android中覆盖View的onScroll方法?当我滚动时,我将它用于视图以阻止视图的复选框中的更新。我使用二维数组来存储复选框的值。
我使用以下内容但对我不起作用。
public void onScroll(View view, int firstItem, int visibleItemCount, int totalItemCount {
// here i check the view's check box
checkBox1.setchecked(true);
}
答案 0 :(得分:1)
你做不到。如果要覆盖API类中提供的方法,则必须扩展该类。我建议您实施自己的自定义View
并覆盖onScroll
方法。
public class YourCustomView extends View
{
@Override
public void onScroll(MotionEvent e1, MotionEvent e2, float distanceX, float distanceY)
{
/** Whatever you need to do, do it here! */
}
}
但是,我认为这不是处理这种情况的最佳方法。我建议使用ViewHolder
。基本上,它是一个容器,用于保存有关View
个项目的信息。我建议使用它,特别是如果你有一个列表或多个项目要处理。您可以在this question中阅读所有相关内容!