android PopupMenu用法实例

PopupMenu menu = new PopupMenu(this, v);//参数为两个:第一个是context,第二个是弹出菜单位置所在锚点(比如点击某一个button弹出菜单,则将该button对象作为参数传入)

menu.getMenuInflater().inflate(R.menu.guide, menu.getMenu());
menu.show();

你可能感兴趣的:(android PopupMenu用法实例)