Uses of Class
ch.aplu.android.ToolBarItem

Packages that use ToolBarItem
ch.aplu.android Package of the JDroidLib framework for developing Android applications with a focus on gaming and simulations. 
 

Uses of ToolBarItem in ch.aplu.android
 

Subclasses of ToolBarItem in ch.aplu.android
 class ToolBarSeparator
          A class to represent actors used for tool bar items.
 class ToolBarStack
          Class that represents a stack of items (e.g. card symbols with the same suit (in rank order).
 class ToolBarText
          A class to represent a text actor used for tool bar items.
 

Methods in ch.aplu.android that return ToolBarItem
 ToolBarItem ToolBar.getItem(int itemIndex)
          Returns the tool bar item actor at the specified index of the item list.
 

Methods in ch.aplu.android with parameters of type ToolBarItem
 void ToolBar.addItem(ToolBarItem... item)
          Add the next item(s) into the tool bar in the order they are passed.
 void ToolBarAdapter.clicked(ToolBarItem item)
          Triggered when a item is clicked.
 void ToolBarListener.clicked(ToolBarItem item)
          Triggered when a item is clicked.
 void ToolBarAdapter.doubleClicked(ToolBarItem item)
          Triggered when a item is double-clicked.
 void ToolBarListener.doubleClicked(ToolBarItem item)
          Triggered when a item is double-clicked.
 void ToolBarAdapter.pressed(ToolBarItem item)
          Triggered when a item is pressed.
 void ToolBarListener.pressed(ToolBarItem item)
          Triggered when a item is pressed.
 void ToolBarAdapter.released(ToolBarItem item)
          Triggered when a item is released.
 void ToolBarListener.released(ToolBarItem item)
          Triggered when a item is released.