public static class

DuxAdapterView.AdapterContextMenuInfo

extends Object
implements ContextMenu.ContextMenuInfo
java.lang.Object
   ↳ com.droidux.ui.widgets.gallery.DuxAdapterView.AdapterContextMenuInfo

Class Overview

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

Summary

Fields
public long id The row id of the item for which the context menu is being displayed.
public int position The position in the adapter for which the context menu is being displayed.
public View targetView The child view for which the context menu is being displayed.
Public Constructors
DuxAdapterView.AdapterContextMenuInfo(View targetView, int position, long id)
[Expand]
Inherited Methods
From class java.lang.Object

Fields

public long id

Since: API Level 3.0

The row id of the item for which the context menu is being displayed.

public int position

Since: API Level 3.0

The position in the adapter for which the context menu is being displayed.

public View targetView

Since: API Level 3.0

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

Public Constructors

public DuxAdapterView.AdapterContextMenuInfo (View targetView, int position, long id)

Since: API Level 3.0