Implementation of the {@link android.view.ContextMenu} interface.
Most clients of the menu framework will never need to touch this
class. However, if the client has a window that
is not a content view of a Dialog or Activity (for example, the
view was added directly to the window manager) and needs to show
context menus, it will use this class.
To use this class, instantiate it via {@link #ContextMenuBuilder(Context)},
and optionally populate it with any of your custom items. Finally,
call {@link #show(View, IBinder)} which will populate the menu
with a view's context menu items and show the context menu. |