1

我基本上是在尝试禁用列表视图上的滚动。这可以通过

@Override
    public boolean dispatchTouchEvent(MotionEvent ev){
       if(ev.getAction()==MotionEvent.ACTION_MOVE){
            ev.setAction(MotionEvent.ACTION_CANCEL);
       }

       super.dispatchTouchEvent(ev);
       return true;
    }

但我不想为此创建一个自定义列表视图(小部件)类。

有什么办法可以做到吗myListView.dispatchTouchEvent(ev)???

提前致谢。

4

1 回答 1

0

试试这个:

@Override
public boolean dispatchTouchEvent(MotionEvent ev) {
   return true;
}
于 2012-07-11T05:31:13.397 回答