过多的空间在菜单图标和文本之间。

huangapple go评论75阅读模式
英文:

excessive space between menu icon and text

问题

这里有一个菜单项,在图标和文本之间有太多的间距。
这里是图片

我该如何去掉图标和文本之间的间距?

这是我的 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>

我尝试了来自 https://stackoverflow.com/questions/36397268/android-navigationview-reduce-space-between-icon-and-text-and-itembackground 的解决方案,但没有起作用。

英文:

So I have a menu item which has too much space between the icon and the text.
The image here

How do I remove the space between the icon and the text?

Here is my menu.xml file:

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

I tried the solutions from https://stackoverflow.com/questions/36397268/android-navigationview-reduce-space-between-icon-and-text-and-itembackground but that did not work.

答案1

得分: 0

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

英文:

I found the solution.
The image size needs to be bigger like 24x24.

huangapple
  • 本文由 发表于 2020年9月23日 23:41:16
  • 转载请务必保留本文链接:https://go.coder-hub.com/64031568.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定