SlidingDrawer over GoogleMap SlidingDrawer over GoogleMap android android

SlidingDrawer over GoogleMap


Put the map inside of a relative layout. In front of the map a view with the same measure.

Example:

<RelativeLayout       android:layout_width="match_parent"       android:layout_height="wrap_content" >                            <include                                android:layout_width="wrap_content"                                android:layout_height="250dp"                                android:layout_weight="1"                                layout="@layout/general_map_fragment" />                             <View                                 android:id="@+id/imageView123"                                 android:layout_width="match_parent"                                 android:layout_height="250dp"                                 android:background="@color/transparent" />                        </RelativeLayout>