如何从视图中停止事件传播

时间:2013-11-01 03:57:11

标签: android

我的布局中有两个View添加:mapContainerPoiView

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:pv="http://schemas.android.com/apk/res-auto"
                android:layout_width="match_parent"
                android:layout_height="match_parent">

    <LinearLayout
        android:id="@+id/mapContainer"
        android:paddingTop="@dimen/abc_action_bar_default_height"
        android:orientation="vertical"
        android:layout_height="match_parent" android:layout_width="match_parent">
    </LinearLayout>

    <com.app.ui.view.PoiView
        android:id="@+id/poiView"
        android:visibility="invisible" android:paddingBottom="@dimen/abc_action_bar_default_height"
        android:layout_height="wrap_content" android:layout_width="match_parent" android:layout_alignParentBottom="true"></com.app.ui.view.PoiView>
</RelativeLayout>

现在mapContainer将占据屏幕的整个空间,但操作栏除外poiView如果我点击某个位置,mapContainer将在mapContainer的顶部显示并重叠poiView

但是我发现如果点击mapContainer poiView内的视图也会收到,mapConatiner似乎会将事件传播到{{1}}。< / p>

有可能阻止这个吗?

0 个答案:

没有答案