我看过一些教程,但无法通过。我想显示图标和项目文本。这是我的菜单项。
<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();
我正在开发我的材料设计应用程序。但它只展示了文字。
答案 0 :(得分:3)
简单的答案是你不能。您可以使用类似的小部件ListPopWindow,它使用适配器绘制其内容,为您提供所需的灵活性。
编辑。对于宽度问题,您必须调用setContentWidth。您可以轻松迭代适配器的数据集以计算最大宽度,并将此值用作setContentWidth
的参数
答案 1 :(得分:0)
实际上,您可以在此处看到:Is it possible to display icons in a PopupMenu?
根据该答案,这是一个显示图标的自定义类:
public class PopupMenu extends android.support.v7.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 = android.support.v7.widget.PopupMenu.class
.getDeclaredField("mPopup");
mPopup.setAccessible(true);
MenuPopupHelper popup = (MenuPopupHelper) mPopup.get(this);
popup.setForceShowIcon(true);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
}