如何在Android中使用滚动模式

时间:2013-09-02 13:57:08

标签: android android-layout android-scrollview

问题

我需要优先考虑在我的Activity中滚动事件。

我正在使用aiCharts(图表库),我需要在我的区域上进行缩放,平移等。没有任何ScrollViews它可以正常工作,但是,如果我使用上面提到的Layout,这些功能会很糟糕。我认为是因为观点的优先权。

可能的解决方案

我尝试在需要位于setOverScrollMode(View.OVER_SCROLL_ALWAYS);ScrollView“顶部”但不能正常工作的视图上使用HorizontalScrollView

布局

 <ScrollView 
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <HorizontalScrollView
            android:layout_width="match_parent"
            android:layout_height="wrap_content" >

            <RelativeLayout
                android:id="@+id/screen_relative_layout"
                android:layout_width="wrap_content"
                android:layout_height="match_parent" >
            </RelativeLayout>        
        </HorizontalScrollView>
    </ScrollView>

通过添加到RelativeLayout以编程方式添加我的所有视图。

1 个答案:

答案 0 :(得分:0)

更改您的RelativeLayout以便android:layout_height="wrap_content" 也可以使用自己的自定义滚动视图,以便拦截移动而不是其他内容:

public class VerticalScrollView extends ScrollView {
private float xDistance, yDistance, lastX, lastY;

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

@Override
public boolean onInterceptTouchEvent(MotionEvent ev) {
    switch (ev.getAction()) {
        case MotionEvent.ACTION_DOWN:
            xDistance = yDistance = 0f;
            lastX = ev.getX();
            lastY = ev.getY();
            break;
        case MotionEvent.ACTION_MOVE:
            final float curX = ev.getX();
            final float curY = ev.getY();
            xDistance += Math.abs(curX - lastX);
            yDistance += Math.abs(curY - lastY);
            lastX = curX;
            lastY = curY;
            if(xDistance > yDistance)
                return false;
    }

    return super.onInterceptTouchEvent(ev);
}
}  

source

让我知道这是如何运作的!