I have simple layout structure:
DrawerLayout
\\-- FrameLayout // @+id/fragment_container
\\-- ListView    // @+id/drawer_list
By clicking o
So, I find workaround solution: just wrap MapView into container and place empty View above. Thanks to this answer: https://stackoverflow.com/a/16231935/1891118
There is my updated layout:
<FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        >
    <com.google.android.gms.maps.MapView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            />
    <View
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            />
</FrameLayout>