我有作为孩子的长视图的 HorizontalScrollView,所以 HorizontalScrollView 是可滚动的并且可以水平滚动它的孩子。有没有可能阻止它?我不希望用户能够滚动视图。
问问题
13586 次
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
好的,我找到了实现它的方法。
只需要创建我自己的 HorizontalScrollView 并覆盖 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 回答