菜单图标和标题之间删除空间(Remove space between menu icon and t

2019-09-29 21:36发布

在下图中,我怎么能删除图标和项目的菜单标题之间的空间?

activity_main_drawer.xml:

<?xml version="1.0" encoding="utf-8" ?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:icon="@drawable/ic_exit_to_app"
        android:id="@+id/logout"
        android:title="Logout" />
</menu>

styles.xml:

<?xml version="1.0" encoding="utf-8" ?>
<resources>
    <style name="AppTheme" parent="Theme.AppCompat.Light">
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>
    <style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
    <style name="AppTheme.LoginButton" />
    <style name="AppTheme.NoActionBar" parent="AppTheme">
        <item name="windowActionBar">false</item>
        <item name="windowNoTitle">true</item>
    </style>
    <style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
</resources>

Answer 1:

你可以用这些重写值发挥这些在你dimens.xml值:

<dimen name="design_navigation_icon_padding" tools:override="true">10dp</dimen>

虽然,这是不可取的突破材料的设计准则。



文章来源: Remove space between menu icon and title