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

iCustomListView

List of types:

CustomListView

CustomListView


Events:

ItemClick (Index As Int, Value As Object)
ItemLongClick (Index As Int, Value As Object)

Members:


  Add (Pnl As PanelWrapper, ItemHeight As Int, Value As Object) As String

  AddTextItem (Text As String, Value As Object) As String

  Class_Globals As String

  Clear As String

  DefaultTextBackgroundColor As Int

  DefaultTextColor As Int

  DefaultTextFont As FontWrapper

  DesignerCreateView (Base As PanelWrapper, Lbl As LabelWrapper, Props As Map) As String

  GetBase As PanelWrapper

  GetItemFromView (v As ViewWrapper) As Int

  GetPanel (Index As Int) As PanelWrapper

  GetSize As Int

  GetValue (Index As Int) As Object

  Initialize (vCallback As Object, vEventName As String) As String

  InsertAt (Index As Int, Pnl As PanelWrapper, ItemHeight As Int, Value As Object) As String

  InsertAtTextItem (Index As Int, Text As String, Value As Object) As String

  IsInitialized As Boolean

  JumpToItem (Index As Int) As String

  RemoveAt (Index As Int) As String

Members description:

Add (Pnl As PanelWrapper, ItemHeight As Int, Value As Object) As String
AddTextItem (Text As String, Value As Object) As String
Adds a text item. The item height will be adjusted based on the text.
Class_Globals As String
Clear As String
Clears all items.
DefaultTextBackgroundColor As Int
DefaultTextColor As Int
DefaultTextFont As FontWrapper
DesignerCreateView (Base As PanelWrapper, Lbl As LabelWrapper, Props As Map) As String
GetBase As PanelWrapper
GetItemFromView (v As ViewWrapper) As Int
Returns the index of the item that holds the given view.
GetPanel (Index As Int) As PanelWrapper
Returns the Panel stored at the specified index.
GetSize As Int
Returns the number of items.
GetValue (Index As Int) As Object
Returns the value stored at the specified index.
Initialize (vCallback As Object, vEventName As String) As String
InsertAt (Index As Int, Pnl As PanelWrapper, ItemHeight As Int, Value As Object) As String
Adds a custom item at the specified index.
InsertAtTextItem (Index As Int, Text As String, Value As Object) As String
Inserts a text item at the specified index.
IsInitialized As Boolean
Tests whether the object has been initialized.
JumpToItem (Index As Int) As String
Scrolls the list to the specified item.
RemoveAt (Index As Int) As String
Removes the item at the specified index.

Top