自定义滚动视图不滚动

Custom scrollview doesn't scroll

我有问题。我有自己的滚动视图,但它不起作用。滚动条出现,但当我尝试使用它时它不起作用。我已经尝试了很多东西,但是 none 工作。代码是:

@SuppressLint("ClickableViewAccessibility") public class myScrollView extends ScrollView {
  private boolean enableScrolling = true;

  public boolean isEnableScrolling() {
    return enableScrolling;
  }
  public void setEnableScrolling(boolean enableScrolling) {
    this.enableScrolling = enableScrolling;
  }

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

  @Override
  public boolean onInterceptTouchEvent(MotionEvent ev) {
    if (isEnableScrolling()) {
        return super.onInterceptTouchEvent(ev);
    } else {
        return false;
    }
  }
  @Override
  public boolean onTouchEvent(MotionEvent ev) {
    if (isEnableScrolling()) {
        return super.onInterceptTouchEvent(ev);
    } else {
       return false;
    }
  }

  @Override
  protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
    // TODO Auto-generated method stub
    super.onMeasure(widthMeasureSpec, heightMeasureSpec);

    setMeasuredDimension(getMeasuredWidth(), getMeasuredHeight());
  }
}

在这个卷轴里面,我有一个relativeLayout,在这个里面有一个View。在 View 我画了一些位图。它们的数量超过了屏幕显示的数量。

XML是:

     <com.edjume.myScrollView
       android:id="@+id/scroll_view"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_above="@+id/table">

        <RelativeLayout
            android:id="@+id/table"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:orientation="vertical">
        </RelativeLayout>

    </com.edjume.myScrollView>

而在 activity 我使用:

RelativeLayout ll = (RelativeLayout) findViewById(R.id.table);
ll.addView(new Table(this));

最后,在我的 View (Table) 中有一个 OnDraw() 和一个 onTouchEvent()。在 onTouchEvent 中,我使用选项 ACTION_DOWNACTION_MOVEACTION_UP

我相信

  @Override
  public boolean onTouchEvent(MotionEvent ev) {
    if (isEnableScrolling()) {
        return super.onInterceptTouchEvent(ev);
    } else {
       return false;
    }
  }

应该是:

  @Override
  public boolean onTouchEvent(MotionEvent ev) {
    if (isEnableScrolling()) {
        return super.onTouchEvent(ev);
    } else {
       return false;
    }
  }