禁止在使用其Child MapView时拦截Listview的触摸

时间:2014-04-07 06:34:07

标签: android android-listview android-mapview ontouchlistener intercept

我想在移动,缩放和放大时禁止Listview的拦截触摸捏在ListView里面,这是Listview的标题视图。

我有一个 ListView 包含所有商店。我已将一个列表视图标题设置为另一个布局xml并将其添加到Main ListView。

ListView标题

<com.google.android.gms.maps.MapView
    android:id="@+id/mapViewStores"
    android:layout_width="match_parent"
    android:layout_height="200dp"
    android:layout_margin="10dp" />

StoreList.java 扩展片段

MapView mapView;        //Map View
GoogleMap mapStoreList; //For Markers on Map

listViewStoreData.addHeaderView(headerViewForStoreList);

mapView = (MapView) headerViewForStoreList
                .findViewById(R.id.mapViewStores);
        mapView.onCreate(savedInstanceState);

if (mapView != null) {
    mapStoreList = mapView.getMap();
    mapStoreList.getUiSettings().setMyLocationButtonEnabled(true);
    mapStoreList.setMyLocationEnabled(true);
    CameraUpdate cameraUpdate = CameraUpdateFactory.newLatLngZoom(
                    new LatLng(latitude, longitude), 13);
    mapStoreList.animateCamera(cameraUpdate);
}

我已设置禁止父视图的拦截触摸的代码

mapStoreList.setOnTouchListener(new OnTouchListener() {

        @Override
        public boolean onTouch(View v, MotionEvent event) {

            switch (event.getAction()) {

            case MotionEvent.ACTION_UP:
                this.getParent().requestDisallowInterceptTouchEvent(false);
                break;

            case MotionEvent.ACTION_DOWN:
                this.getParent().requestDisallowInterceptTouchEvent(true);
                break
            }

            return super.onTouchEvent(ev);
        }
    });

不幸的是,它没有用。

但是当将OnTouchListener设置为ListView对象时,它会记录事件。

listViewStoreData.setOnTouchListener(new OnTouchListener() {

        @Override
        public boolean onTouch(View v, MotionEvent event) {

            switch (event.getAction()) {
            case MotionEvent.ACTION_MOVE:
                Log.e("MotionEvent", "Move");
                break;

            case MotionEvent.ACTION_UP:
                Log.e("MotionEvent", "Up");
                break;

            case MotionEvent.ACTION_DOWN:
                Log.e("MotionEvent", "Down");
                break;

            case MotionEvent.ACTION_CANCEL:
                Log.e("MotionEvent", "Cancel");
                break;

            case MotionEvent.ACTION_POINTER_INDEX_MASK:
                Log.e("MotionEvent", "Pointer Index Mask");
                break;

            case MotionEvent.ACTION_POINTER_INDEX_SHIFT:
                Log.e("MotionEvent", "Pointer Index Shift");
                break;
            }

            return false;
        }
    });

那么,我如何克服这种情况呢?是否有可能我们无法获得&#39; OnTouchListerner&#39; ListView的孩子 - &gt;标题视图的孩子 - &gt; MapView ??

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:4)

覆盖dispatchTouchEvent()并停止列表视图拦截ACTION_DOWN上的触摸事件。在我的例子中,我在包含我的MapView的ViewGroup中实现了它,但是如果你扩展MapView它也可能正常工作。您唯一需要的是对MapView所在的ListView的引用。

@Override
public boolean dispatchTouchEvent(final MotionEvent motionEvent) {

    switch (motionEvent.getActionMasked()) {
        // Pressed on map: stop listview from scrolling
        case MotionEvent.ACTION_DOWN:
            listView.requestDisallowInterceptTouchEvent(true);
            break;

        // Released on map or cancelled: listview can be normal again
        case MotionEvent.ACTION_UP:
        case MotionEvent.ACTION_CANCEL:
            listView.requestDisallowInterceptTouchEvent(false);
            break;
    }

    // Process event as normal. If listview was disallowed touch events, the map will process the event.
    return super.dispatchTouchEvent(motionEvent);
}

这可能适用于具有滚动机制的大多数/所有容器。