AccessibilityAction
class AccessibilityAction<T : Function<Boolean>>
kotlin.Any | |
↳ | androidx.compose.ui.semantics.AccessibilityAction |
Standard accessibility action.
Summary
Public constructors | |
---|---|
Standard accessibility action. |
Public methods | |
---|---|
Boolean | |
Int |
hashCode() |
String |
toString() |
Properties | |
---|---|
T? |
The function to invoke when this action is performed. |
String? |
The description of this action |
Public constructors
<init>
AccessibilityAction(
label: String?,
action: T?)
Standard accessibility action.
Parameters | |
---|---|
label: String? | The description of this action |
action: T? | The function to invoke when this action is performed. The function should return a boolean result indicating whether the action is successfully handled. For example, a scroll forward action should return false if the widget is not enabled or has reached the end of the list. If multiple semantics blocks with the same AccessibilityAction are provided, the resulting AccessibilityAction's label/action will be the label/action of the outermost modifier with this key and nonnull label/action, or null if no nonnull label/action is found. |
Public methods
hashCode
fun hashCode(): Int
toString
fun toString(): String
Properties
action
val action: T?
The function to invoke when this action is performed. The function should return a boolean result indicating whether the action is successfully handled. For example, a scroll forward action should return false if the widget is not enabled or has reached the end of the list. If multiple semantics blocks with the same AccessibilityAction are provided, the resulting AccessibilityAction's label/action will be the label/action of the outermost modifier with this key and nonnull label/action, or null if no nonnull label/action is found.