ConfirmationActivity

public class ConfirmationActivity
extends Activity implements ConfirmationOverlay.FinishedAnimationListener

java.lang.Object
   ↳ android.content.Context
     ↳ android.content.ContextWrapper
       ↳ android.view.ContextThemeWrapper
         ↳ android.app.Activity
           ↳ android.support.wearable.activity.ConfirmationActivity


This class is deprecated.
use androidx.wear.activity.ConfirmationActivity provided by the Jetpack Wear library instead.

This Activity is used to display confirmation animations after the user completes an action on the wearable. There are three types of confirmations: Success: the action was completed successfully on the wearable. Failure: the action failed to complete. Open on Phone: the action has caused something to display on the phone, or in order to complete the action, the user will need to go to their phone to continue.

It is the responsibility of the wearable application developer to determine whether the action has succeeded, failed, or requires the user to go to their phone, and trigger the appropriate confirmation.

To configure the confirmation according to the result of the action, set the extra EXTRA_ANIMATION_TYPE to one of the following values:

SUCCESS_ANIMATION
Displays a positive confirmation animation with an optional message.
OPEN_ON_PHONE_ANIMATION
Displays an animation indicating an action has been sent to a paired device.
FAILURE_ANIMATION
Displays a generic failure page with an optional message.
An optional message, included in the extra EXTRA_MESSAGE will be displayed horizontally centered below the animation.

Summary

Constants

String EXTRA_ANIMATION_TYPE

String EXTRA_MESSAGE

int FAILURE_ANIMATION

int OPEN_ON_PHONE_ANIMATION

int SUCCESS_ANIMATION

Inherited constants

Inherited fields

Public constructors

ConfirmationActivity()

Public methods

void onAnimationFinished()
void onCreate(Bundle savedInstanceState)

Inherited methods

Constants

EXTRA_ANIMATION_TYPE

public static final String EXTRA_ANIMATION_TYPE

Constant Value: "android.support.wearable.activity.extra.ANIMATION_TYPE"

EXTRA_MESSAGE

public static final String EXTRA_MESSAGE

Constant Value: "android.support.wearable.activity.extra.MESSAGE"

FAILURE_ANIMATION

public static final int FAILURE_ANIMATION

Constant Value: 3 (0x00000003)

OPEN_ON_PHONE_ANIMATION

public static final int OPEN_ON_PHONE_ANIMATION

Constant Value: 2 (0x00000002)

SUCCESS_ANIMATION

public static final int SUCCESS_ANIMATION

Constant Value: 1 (0x00000001)

Public constructors

ConfirmationActivity

public ConfirmationActivity ()

Public methods

onAnimationFinished

public void onAnimationFinished ()

onCreate

public void onCreate (Bundle savedInstanceState)

Parameters
savedInstanceState Bundle