如何在选项菜单中的文本旁边添加图像?

How to add image beside text in an option menu?

我想知道是否有在 xml 的选项菜单中的文本旁边添加图像的解决方案,例如照片:

通过将图标属性添加到您的菜单项 xml 并将显示为动作设置为从不喜欢那样:

<menu xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <item
        android:id="@+id/favorite"
        android:icon="@drawable/ic_favorite_24dp"
        android:title="@string/favorite"
        android:contentDescription="@string/content_description_favorite"
        app:showAsAction="never" />
</menu>

其中 ic_favorite_24dp 可以是您在可绘制对象文件夹中喜欢的任何 image/vector 资产图标可绘制对象。

查看此 link and this link 了解更多信息