Default Padding/margin On The Left And Right Side Of The Navigation Item
I have created a new android project with Navigation Drawer Activity Navigation Drawer activity I did not perform any changes in the project and after creating the project I have d
Solution 1:
Add this to the NavigationView
's attributes in activity_main.xml
:
app:itemShapeInsetBottom="0dp"
app:itemShapeInsetTop="0dp"
app:itemShapeInsetEnd="0dp"
app:itemShapeInsetStart="0dp"
Post a Comment for "Default Padding/margin On The Left And Right Side Of The Navigation Item"