7

我有作为孩子的长视图的 Horizo​​ntalScrollView,所以 Horizo​​ntalScrollView 是可滚动的并且可以水平滚动它的孩子。有没有可能阻止它?我不希望用户能够滚动视图。

4

2 回答 2

19

我的建议是使用OnTouchListener,例如:

onCreate方法


HorziontalScrollView scrollView= (HorizontalScrollView)findViewById(R.id.scrollView);
scrollView.setOnTouchListener(new OnTouch());

并有一堂课:


private class OnTouch implements OnTouchListener
{
    @Override
    public boolean onTouch(View v, MotionEvent event) {
    return true;
    }
}
于 2012-05-07T11:25:42.953 回答
2

好的,我找到了实现它的方法。

只需要创建我自己的 Horizo​​ntalScrollView 并覆盖 onTouchEvent 方法

public class MyHSV extends HorizontalScrollView {

    public MyHSV(Context context, AttributeSet attrs, int defStyle) {
        super(context, attrs, defStyle);
        init(context);
    }

    public MyHSV(Context context, AttributeSet attrs) {
        super(context, attrs);
        init(context);
    }

    public MyHSV(Context context) {
        super(context);
        init(context);
    }

    void init(Context context) {
        // remove the fading as the HSV looks better without it
        setHorizontalFadingEdgeEnabled(false);
        setVerticalFadingEdgeEnabled(false);
    }

    @Override
    public boolean onTouchEvent(MotionEvent ev) {
        // Do not allow touch events.
        return false;
    }

    @Override
    public boolean onInterceptTouchEvent(MotionEvent ev) {
        // Do not allow touch events.
        return false;
    }

}

然后在xml文件中

<pathToClass.MyHSV xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:scrollbars="none"
    android:id="@+id/myHSV>

</pathToClass.MyHSV>
于 2012-05-05T15:48:56.583 回答