android.view.View.OnCreateContextMenuListener |
Known Indirect Subclasses
Activity,
ActivityGroup,
AlertDialog,
AliasActivity,
CharacterPickerDialog,
DatePickerDialog,
Dialog,
ExpandableListActivity,
LauncherActivity,
ListActivity,
PreferenceActivity,
ProgressDialog,
TabActivity,
TimePickerDialog
Activity |
An activity is a single, focused thing that the user can do. |
ActivityGroup |
A screen that contains and runs multiple embedded activities. |
AlertDialog |
A subclass of Dialog that can display one, two or three buttons. |
AliasActivity |
Stub activity that launches another activity (and then finishes itself)
based on information in its component's manifest meta-data. |
CharacterPickerDialog |
Dialog for choosing accented characters related to a base character. |
DatePickerDialog |
A simple dialog containing an DatePicker. |
Dialog |
Base class for Dialogs. |
ExpandableListActivity |
An activity that displays an expandable list of items by binding to a data
source implementing the ExpandableListAdapter, and exposes event handlers
when the user selects an item. |
LauncherActivity |
Displays a list of all activities which can be performed
for a given intent. |
ListActivity |
An activity that displays a list of items by binding to a data source such as
an array or Cursor, and exposes event handlers when the user selects an item. |
PreferenceActivity |
Shows a hierarchy of Preference objects as
lists, possibly spanning multiple screens. |
ProgressDialog |
A dialog showing a progress indicator and an optional text message or view. |
TabActivity |
An activity that contains and runs multiple embedded activities or views. |
TimePickerDialog |
A dialog that prompts the user for the time of day using a TimePicker. |
|
Class Overview
Interface definition for a callback to be invoked when the context menu
for this view is being built.
Public Methods
Called when the context menu for this view is being built. It is not
safe to hold onto the menu after this method returns.
Parameters
menu
| The context menu that is being built |
v
| The view for which the context menu is being built |
menuInfo
| Extra information about the item for which the
context menu should be shown. This information will vary
depending on the class of v.
|