Remove Space Between Menu Icon And Title
In the image below, how can I remove the space between the icon and the title of the item in the menu? activity_main_drawer.xml: <
Solution 1:
You can play with those values overriding these values in your dimens.xml:
<dimenname="design_navigation_icon_padding"tools:override="true">10dp</dimen>
Though, it is not desirable to break material design guidelines.
Post a Comment for "Remove Space Between Menu Icon And Title"