3

我看过一些教程,但无法通过。我想与项目文本一起显示图标。这是我的菜单项。

  <item
    android:id="@+id/share"
    android:icon="@drawable/ic_share_grey600_18dp"
    app:showAsAction="always|withText"
    android:orderInCategory="1"
    android:title="Share"/>

这是我的java代码:

PopupMenu popup = new PopupMenu(context, holder.cardMenuButton);
popup.getMenuInflater().inflate(R.menu.card_overflow_menu, popup.getMenu());
popup.show();

我正在开发我的材料设计应用程序。但它只显示文本。

4

2 回答 2

3

简单的答案是你不能。您可以使用类似的小部件ListPopWindow,它使用适配器来绘制其内容,从而为您提供所需的灵活性。

编辑。对于宽度问题,您必须调用setContentWidth。您可以轻松地迭代适配器的数据集以计算最大宽度,并将此值用作参数setContentWidth

于 2015-02-22T18:52:08.807 回答
1

实际上,您可以,正如您在此处看到的那样:是否可以在 PopupMenu 中显示图标?

基于该答案,这是一个显示图标的自定义类:

public class PopupMenu extends androidx.appcompat.widget.PopupMenu {

public PopupMenu(Context context, View anchor) {
    super(context, anchor);
    setForceShowIcon();
}

public PopupMenu(Context context, View anchor, int gravity) {
    super(context, anchor, gravity);
    setForceShowIcon();
}

public PopupMenu(Context context, View anchor, int gravity,
                 int popupStyleAttr, int popupStyleRes) {
    super(context, anchor, gravity, popupStyleAttr, popupStyleRes);
    setForceShowIcon();
}

private void setForceShowIcon() {
    try {
        Field mPopup = androidx.appcompat.widget.PopupMenu.class
                .getDeclaredField("mPopup");
        mPopup.setAccessible(true);
        MenuPopupHelper popup = (MenuPopupHelper) mPopup.get(this);
        popup.setForceShowIcon(true);
    } catch (Exception e) {
        throw new RuntimeException(e);
    }
}
}
于 2017-04-19T06:26:13.420 回答