触发ontouchlistener时禁用listview滚动

时间:2014-03-25 03:32:11

标签: android android-listview ontouchlistener

我将一个ontouch监听器附加到我的listview,这样我就可以从左到右拖动列表视图。虽然我拖动列表视图也可以滚动它。如何在拖动时禁用列表视图滚动。

1 个答案:

答案 0 :(得分:1)

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);