我基本上是在尝试禁用列表视图上的滚动。这可以通过
@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)
???
提前致谢。