Search code examples
androidgoogle-mapsandroid-fragmentsandroid-linearlayoutandroid-relativelayout

make layout that overlay above google map fragment in android


I need to make LinearLayout that overflow an android google map as shown in this image any one has any idea how to make this I need help ? android google map and linearlayout above it


Solution

  • You can try use FrameLayput

    <FrameLayout...>
    
       <MapFragment.../>
    
       <LinearLayout...>
    
       // your layout
    
       </LinearLayout>
    
    </FrameLayout>