I have the followingNavigationView
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="330dp"
android:layout_height="match_parent"
android:layout_gravity="start"
app:itemTextColor="@color/HintHomeMonto"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header_main"
app:menu="@menu/activity_main_drawer"
android:background="@color/white"
/>
When it opens as it is not full screen, the background activity remains as a shadow, I would like this shadow not to be there, I don't know what it is called or how to look for it, if someone enlightens me, thank you very much.
I mean that when it opens, the background that is not occupied by it is opaque navigationview
. I would like that opaque not to be there, thanks
To remove the gradient when opening the
NavigationDrawer
, you can use the propertysetScrimColor
that allows you to change the color .Code: