英文:
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:
<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>
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.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论