Slidingdrawer Over Googlemap
First of all, I know the SlidingDrawer is deprecated, but I haven't found any alternative to it so I'm using it anyways :3 (If someone knows an alternative to it, please share it!)
Solution 1:
Put the map inside of a relative layout. In front of the map a view with the same measure.
Example:
<RelativeLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content" ><includeandroid:layout_width="wrap_content"android:layout_height="250dp"android:layout_weight="1"layout="@layout/general_map_fragment" /><Viewandroid:id="@+id/imageView123"android:layout_width="match_parent"android:layout_height="250dp"android:background="@color/transparent" /></RelativeLayout>
Post a Comment for "Slidingdrawer Over Googlemap"