ListView禁用标题视图的垂直滚动

时间:2014-04-08 08:49:51

标签: android android-listview android-mapview vertical-scrolling

我的标题中有ListView com.google.android.gms.maps.MapView。当我滚动列表时,我希望隐藏MapView,它可以正常工作。但是,当我从头到尾滚动标题或向下滚动时我不希望ListView执行滚动 - 我希望它允许MapView执行缩放/滚动操作。登记/> 我知道ListView / MapView一起使用bad idea,但我需要找到解决方案。我考虑在OnTouchListener实例上设置ListView并在需要时将其事件发送到MapView但它看起来不是一个非常简单的解决方案。

2 个答案:

答案 0 :(得分:10)

最后,我通过扩展ListView类来解决它:

public class SingleScrollableHeaderListView extends ListView {
    private View mHeaderView;

    public SingleScrollableHeaderListView(Context context) {
        super(context);
    }

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

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

    @Override
    public boolean onInterceptTouchEvent(MotionEvent ev) {
        if (mHeaderView != null) return mHeaderView.onTouchEvent(ev);
        return super.onInterceptTouchEvent(ev);
    }

    @Override
    public void addHeaderView(View v, Object data, boolean isSelectable) {
        if (mHeaderView != null) removeHeaderView(mHeaderView);
        mHeaderView = v;
        super.addHeaderView(v, data, isSelectable);
    }
}

重要的部分是onInterceptTouchEvent()方法 - 这里我将MotionEvent实例传递给标题视图(如果存在),否则我让ListView来处理运动事件

答案 1 :(得分:0)

尝试在MapView上的OnTouch中调用requestDisallowInterceptTouchEvent(true)到listview