Most visited

Recently visited

Added in API level 1

ExpandableListView.ExpandableListContextMenuInfo

public static class ExpandableListView.ExpandableListContextMenuInfo
extends Object implements ContextMenu.ContextMenuInfo

java.lang.Object
   ↳ android.widget.ExpandableListView.ExpandableListContextMenuInfo


Extra menu information specific to an ExpandableListView provided to the onCreateContextMenu(ContextMenu, View, ContextMenuInfo) callback when a context menu is brought up for this AdapterView.

Summary

Fields

public long id

The ID of the item (group or child) for which the context menu is being displayed.

public long packedPosition

The packed position in the list represented by the adapter for which the context menu is being displayed.

public View targetView

The view for which the context menu is being displayed.

Public constructors

ExpandableListView.ExpandableListContextMenuInfo(View targetView, long packedPosition, long id)

Inherited methods

From class java.lang.Object

Fields

id

Added in API level 1
long id

The ID of the item (group or child) for which the context menu is being displayed.

packedPosition

Added in API level 1
long packedPosition

The packed position in the list represented by the adapter for which the context menu is being displayed. Use the methods getPackedPositionType(long), getPackedPositionChild(long), and getPackedPositionGroup(long) to unpack this.

targetView

Added in API level 1
View targetView

The view for which the context menu is being displayed. This will be one of the children Views of this ExpandableListView.

Public constructors

ExpandableListView.ExpandableListContextMenuInfo

Added in API level 1
ExpandableListView.ExpandableListContextMenuInfo (View targetView, 
                long packedPosition, 
                long id)

Parameters
targetView View
packedPosition long
id long

Hooray!