When we create an instance of the PopupMenu
, we need to pass its constructor a reference to the Context
, as well as the view to which the menu is attached 创建实例的时候,一个是上下文,一个是Popup要依附的控件,
使用的时候有两方式
有两个事件:一个是item的点击,一个是消失事件:
----
menu.xml文件格式:
<?xml version="1.0" encoding="UTF-8" ?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@+id/item1"
android:title="查看联系人"/>
<item android:id="@+id/item1"
android:title="多媒体库"/>
<item android:id="@+id/item1"
android:title="搜索"/>
<item android:id="@+id/item1"
android:title="静音"/>
<item android:id="@+id/item1"
android:title="壁纸"/>
</menu>
over.
网友评论