0

Dear friends i enter image description herewant to make a navigation Drawer with full screen width, when i click on Navigation_View Button a side bar is opening with full screen height but almost 90% width of whole screen but i want to expand it on the full screen.. is it possible ? if yes then kindly let me know how it will be possible.?

Drawer

bhoomii
  • 23
  • 8

1 Answers1

0

Try to refer this answer.
Briefly - set negative layout margin to drawer.

    <include
        android:id="@+id/left_drawer"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        layout="@layout/drawer"
        android:layout_marginLeft="-64dp"/>
Community
  • 1
  • 1
Goltsev Eugene
  • 3,325
  • 6
  • 25
  • 48