上下文菜单大多数情况下都是为ListView中的Item添加的,长按2S左右跳出菜单,添加上下文菜单必须重写活动中的onCreateContextMenu()方法和onContextItemSelected()方法,前者创建后者监听. 当然也可以通过xml文件创建菜单. private final int MENU_DEL = Menu.FIRST; private final int MENU_MESS = Menu.FIRST+1; public void onCreateContextMe…
A contextual menu offers actions that affect a specific item or context frame in the UI. You can provide a context menu for any view, but they are most often used for items in a ListView, GridView, or other view collections in which the user can perf…