interface Action
(source)
Generic interface for actions to be added to the toolbar.
open val visible: () -> Boolean |
abstract fun bind(view: View): Unit |
|
abstract fun createView(parent: ViewGroup): View |
open class ActionButton : Action
An action button to be added to the toolbar. |
|
open class ActionImage : Action
An action that just shows a static, non-clickable image. |
|
open class ActionSpace : Action
An "empty" action with a desired width to be used as "placeholder". |
|
open class ActionToggleButton : Action
An action button with two states, selected and unselected. When the button is pressed, the state changes automatically. |
|
class TabCounterToolbarButton : Action
A Toolbar.Action implementation that shows a TabCounter. |