java.lang.Object | ||
↳ | com.urbanairship.actions.Action | |
↳ | com.urbanairship.actions.ClipboardAction |
An action that adds text to the clipboard.
Accepted situations: Situation.PUSH_OPENED, Situation.WEB_VIEW_INVOCATION, Situation.MANUAL_INVOCATION, Situation.BACKGROUND_NOTIFICATION_ACTION_BUTTON, and Situation.FOREGROUND_NOTIFICATION_ACTION_BUTTON. Accepted argument value - A string with the clipboard text or a map with: Result value: The arguments value. Default Registration Names: ^c, clipboard_actionConstants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
String | DEFAULT_REGISTRY_NAME | Default registry name | |||||||||
String | DEFAULT_REGISTRY_SHORT_NAME | Default registry short name | |||||||||
String | LABEL_KEY | Key to define the ClipData's label when providing the action's value as a map. | |||||||||
String | TEXT_KEY | Key to define the ClipData's text when providing the action's value as a map. |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
ClipboardAction() |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
boolean |
acceptsArguments(ActionArguments arguments)
Called before an action is performed to determine if the
the action can accept the arguments.
| ||||||||||
ActionResult |
perform(ActionArguments arguments)
Performs the action.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
Default registry name
Default registry short name
Key to define the ClipData's label when providing the action's value as a map.
Key to define the ClipData's text when providing the action's value as a map.
Called before an action is performed to determine if the the action can accept the arguments.
arguments | The action arguments. |
---|
true
if the action can perform with the arguments,
otherwise false
.
Performs the action.
arguments | The action arguments. |
---|