菜单图标和文本之间过多 space

excessive space between menu icon and text

所以我有一个菜单项,其图标和文本之间的 space 太多了。 The image here

如何去掉图标和文字之间的space?

这是我的 menu.xml 文件:

<menu xmlns:tools="http://schemas.android.com/tools" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto">
    <item android:title=""
          android:id="@+id/overflowmenu"
            android:icon="@drawable/ic_baseline_more_vert_24"
          app:showAsAction="always">
        <menu>
            <item
                    android:title="Settings"
                    android:id="@+id/updateId"
                    android:icon="@drawable/ic_settings"
                    app:titleTextAppearance="@style/ActionBar.nameText"/>
        </menu>
    </item>
</menu>

我尝试了 的解决方案,但没有用。

我找到了解决方案。 图像尺寸需要更大,例如 24x24。