Android Programming Press on the image to return to the main documentation page.

RSPopupMenu

Written by XverhelstX

List of types:

RSPopupMenu

RSPopupMenu


This is an 'Activity Object', it cannot be declared under Sub Process_Globals.

Events:

None

Members:


  AddMenuItem (ItemId As Int, Order As Int, Title As String)

  AddMenuItem2 (GroupId As Int, ItemId As Int, Order As Int, Title As String)

  AddSubMenuItem (ItemId As Int, Order As Int, Title As String)

  AddSubMenuItem2 (GroupId As Int, ItemId As Int, Order As Int, Title As String)

  Dismiss

  Initialize (EventName As String, view As ConcreteViewWrapper)

  Initialize2 (EventName As String, view As ConcreteViewWrapper, Gravity As Int)

  IsInitialized As Boolean

  Show

Members description:

AddMenuItem (ItemId As Int, Order As Int, Title As String)
Add a new item to the menu.
AddMenuItem2 (GroupId As Int, ItemId As Int, Order As Int, Title As String)
Add a new item to the menu.
AddSubMenuItem (ItemId As Int, Order As Int, Title As String)
Add a new item to the menu.
AddSubMenuItem2 (GroupId As Int, ItemId As Int, Order As Int, Title As String)
Add a new item to the menu.
Dismiss
Dismiss the menu popup.
Initialize (EventName As String, view As ConcreteViewWrapper)
Initializes the Popup Menu.
A PopupMenu displays a Menu in a modal popup window anchored to a View.
The popup will appear below the anchor view if there is room, or above it if there is not.
If the IME is visible the popup will not overlap it until it is touched.
Touching outside of the popup will dismiss it.
Initialize2 (EventName As String, view As ConcreteViewWrapper, Gravity As Int)
Initializes the Popup Menu.
A PopupMenu displays a Menu in a modal popup window anchored to a View.
The popup will appear below the anchor view if there is room, or above it if there is not.
If the IME is visible the popup will not overlap it until it is touched.
Touching outside of the popup will dismiss it.
IsInitialized As Boolean
Show
Show the menu popup anchored to the view specified during construction.
Top