自定义scrollview不会滚动

时间:2015-04-24 01:15:20

标签: java android scrollview android-custom-view

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

@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>

在我使用的活动中:

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

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

1 个答案:

答案 0 :(得分:1)

我相信

  @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;
    }
  }