【发布时间】:2014-03-25 03:32:10
【问题描述】:
我在我的列表视图上附加了一个 ontouch 监听器,因此我可以从左到右拖动列表视图。在我拖动列表视图时,我也可以滚动它。如何在拖动时禁用列表视图滚动。
【问题讨论】:
标签: android android-listview ontouchlistener
我在我的列表视图上附加了一个 ontouch 监听器,因此我可以从左到右拖动列表视图。在我拖动列表视图时,我也可以滚动它。如何在拖动时禁用列表视图滚动。
【问题讨论】:
标签: android android-listview ontouchlistener
listView.setOnTouchListener(new OnTouchListener() {
public boolean onTouch(View v, MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_MOVE) {
return true; // Indicates that this has been handled by you and will not be forwarded further.
}
return false;
}
});
或
listView.setScrollContainer(false);
【讨论】: