summaryrefslogtreecommitdiff
path: root/main/src/com/google/android/setupdesign/transition/TransitionHelper.java
blob: 0d7611084aea83a0a5e819de49aea2e52de8515d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
/*
 * Copyright (C) 2020 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.google.android.setupdesign.transition;

import android.annotation.TargetApi;
import android.app.Activity;
import android.app.ActivityOptions;
import android.app.Fragment;
import android.content.Context;
import android.content.Intent;
import android.content.res.TypedArray;
import android.os.Build;
import android.os.Build.VERSION_CODES;
import android.os.Bundle;
import android.os.Parcelable;
import android.util.Log;
import android.view.Window;
import androidx.annotation.IntDef;
import androidx.annotation.Nullable;
import com.google.android.material.transition.platform.MaterialSharedAxis;
import com.google.android.setupcompat.partnerconfig.PartnerConfig;
import com.google.android.setupcompat.partnerconfig.PartnerConfigHelper;
import com.google.android.setupdesign.R;
import com.google.android.setupdesign.util.BuildCompatUtils;
import com.google.android.setupdesign.util.ThemeHelper;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;

/** Helper class for apply the transition to the pages which uses platform version. */
public class TransitionHelper {

  private static final String TAG = "TransitionHelper";

  /*
   * In Setup Wizard, all Just-a-sec style screens (i.e. screens that has an indeterminate
   * progress bar and automatically finishes itself), should do a cross-fade when entering or
   * exiting the screen. For all other screens, the transition should be a slide-in-from-right
   * or customized.
   *
   * We use two different ways to override the transitions. The first is calling
   * overridePendingTransition in code, and the second is using windowAnimationStyle in the theme.
   * They have the following priority when framework is figuring out what transition to use:
   * 1. overridePendingTransition, entering activity (highest priority)
   * 2. overridePendingTransition, exiting activity
   * 3. windowAnimationStyle, entering activity
   * 4. windowAnimationStyle, exiting activity
   *
   * This is why, in general, overridePendingTransition is used to specify the fade animation,
   * while windowAnimationStyle is used to specify the slide transition. This way fade animation
   * will take priority over the slide animation.
   *
   * Below are types of animation when switching activities. These are return values for
   * {@link #getTransition()}. Each of these values represents 4 animations: (backward exit,
   * backward enter, forward exit, forward enter).
   *
   * We override the transition in the following flow
   * +--------------+-------------------------+--------------------------+
   * |              | going forward           | going backward           |
   * +--------------+-------------------------+--------------------------+
   * | old activity | startActivity(OnResult) | onActivityResult         |
   * +--------------+-------------------------+--------------------------+
   * | new activity | onStart                 | finish (RESULT_CANCELED) |
   * +--------------+-------------------------+--------------------------+
   */

  /** The constant of transition type. */
  @Retention(RetentionPolicy.SOURCE)
  @IntDef({
    TRANSITION_NONE,
    TRANSITION_NO_OVERRIDE,
    TRANSITION_FRAMEWORK_DEFAULT,
    TRANSITION_SLIDE,
    TRANSITION_FADE,
    TRANSITION_FRAMEWORK_DEFAULT_PRE_P,
    TRANSITION_CAPTIVE,
  })
  public @interface TransitionType {}

  /** No transition, as in overridePendingTransition(0, 0). */
  public static final int TRANSITION_NONE = -1;

  /**
   * No override. If this is specified as the transition, overridePendingTransition will not be
   * called.
   */
  public static final int TRANSITION_NO_OVERRIDE = 0;

  /**
   * Override the transition to the framework default. This values are read from {@link
   * android.R.style#Animation_Activity}.
   */
  public static final int TRANSITION_FRAMEWORK_DEFAULT = 1;

  /** Override the transition to a slide-in-from-right (or from-left for RTL locales). */
  public static final int TRANSITION_SLIDE = 2;

  /**
   * Override the transition to fade in the new activity, while keeping the old activity. Setup
   * wizard does not use cross fade to avoid the bright-dim-bright effect when transitioning between
   * two screens that look similar.
   */
  public static final int TRANSITION_FADE = 3;

  /** Override the transition to the old framework default pre P. */
  public static final int TRANSITION_FRAMEWORK_DEFAULT_PRE_P = 4;

  /**
   * Override the transition to the specific transition and the transition type will depends on the
   * partner resource.
   */
  // TODO: Add new partner resource to determine which transition type would be apply.
  public static final int TRANSITION_CAPTIVE = 5;

  /**
   * No override. If this is specified as the transition, the enter/exit transition of the window
   * will not be set and keep original behavior.
   */
  public static final int CONFIG_TRANSITION_NONE = 0;

  /** Override the transition to the specific type that will depend on the partner resource. */
  public static final int CONFIG_TRANSITION_SHARED_X_AXIS = 1;

  /**
   * Passed in an intent as EXTRA_ACTIVITY_OPTIONS. This is the {@link ActivityOptions} of the
   * transition used in {@link Activity#startActivity} or {@link Activity#startActivityForResult}.
   */
  public static final String EXTRA_ACTIVITY_OPTIONS = "sud:activity_options";

  private TransitionHelper() {}

  /**
   * Apply the transition for going forward which is decided by partner resource {@link
   * PartnerConfig#CONFIG_TRANSITION_TYPE} and system property {@code setupwizard.transition_type}.
   * The default transition that will be applied is {@link #TRANSITION_SLIDE}. The timing to apply
   * the transition is going forward from the previous activity to this, or going forward from this
   * activity to the next.
   *
   * <p>For example, in the flow below, the forward transitions will be applied to all arrows
   * pointing to the right. Previous screen --> This screen --> Next screen
   */
  @TargetApi(VERSION_CODES.LOLLIPOP)
  public static void applyForwardTransition(Activity activity) {
    applyForwardTransition(activity, TRANSITION_CAPTIVE);
  }

  /**
   * Apply the transition for going forward which is decided by partner resource {@link
   * PartnerConfig#CONFIG_TRANSITION_TYPE} and system property {@code setupwizard.transition_type}.
   * The default transition that will be applied is {@link #CONFIG_TRANSITION_NONE}. The timing to
   * apply the transition is going forward from the previous {@link Fragment} to this, or going
   * forward from this {@link Fragment} to the next.
   */
  @TargetApi(VERSION_CODES.M)
  public static void applyForwardTransition(Fragment fragment) {
    if (Build.VERSION.SDK_INT >= VERSION_CODES.M) {
      if (getConfigTransitionType(fragment.getContext()) == CONFIG_TRANSITION_SHARED_X_AXIS) {
        MaterialSharedAxis exitTransition =
            new MaterialSharedAxis(MaterialSharedAxis.X, /* forward= */ true);
        fragment.setExitTransition(exitTransition);

        MaterialSharedAxis enterTransition =
            new MaterialSharedAxis(MaterialSharedAxis.X, /* forward= */ true);
        fragment.setEnterTransition(enterTransition);
      } else {
        Log.w(TAG, "Not apply the forward transition for platform fragment.");
      }
    } else {
      Log.w(
          TAG,
          "Not apply the forward transition for platform fragment. The API is supported from"
              + " Android Sdk "
              + VERSION_CODES.M);
    }
  }

  /**
   * Apply the transition for going forward. This is applied when going forward from the previous
   * activity to this, or going forward from this activity to the next.
   *
   * <p>For example, in the flow below, the forward transitions will be applied to all arrows
   * pointing to the right. Previous screen --> This screen --> Next screen
   */
  @TargetApi(VERSION_CODES.LOLLIPOP)
  public static void applyForwardTransition(Activity activity, @TransitionType int transitionId) {
    if (transitionId == TRANSITION_SLIDE) {
      activity.overridePendingTransition(R.anim.sud_slide_next_in, R.anim.sud_slide_next_out);
    } else if (transitionId == TRANSITION_FADE) {
      activity.overridePendingTransition(android.R.anim.fade_in, R.anim.sud_stay);
    } else if (transitionId == TRANSITION_FRAMEWORK_DEFAULT) {
      TypedArray typedArray =
          activity.obtainStyledAttributes(
              android.R.style.Animation_Activity,
              new int[] {
                android.R.attr.activityOpenEnterAnimation, android.R.attr.activityOpenExitAnimation
              });
      activity.overridePendingTransition(
          typedArray.getResourceId(/* index= */ 0, /* defValue= */ 0),
          typedArray.getResourceId(/* index= */ 1, /* defValue= */ 0));
      typedArray.recycle();
    } else if (transitionId == TRANSITION_FRAMEWORK_DEFAULT_PRE_P) {
      activity.overridePendingTransition(
          R.anim.sud_pre_p_activity_open_enter, R.anim.sud_pre_p_activity_open_exit);
    } else if (transitionId == TRANSITION_NONE) {
      // For TRANSITION_NONE, turn off the transition
      activity.overridePendingTransition(/* enterAnim= */ 0, /* exitAnim= */ 0);
    } else if (transitionId == TRANSITION_CAPTIVE) {
      if (Build.VERSION.SDK_INT >= VERSION_CODES.LOLLIPOP) {
        // 1. Do not change the transition behavior by default
        // 2. If the flag present, apply the transition from transition type
        if (getConfigTransitionType(activity) == CONFIG_TRANSITION_SHARED_X_AXIS) {
          Window window = activity.getWindow();
          if (window != null) {
            MaterialSharedAxis exitTransition =
                new MaterialSharedAxis(MaterialSharedAxis.X, /* forward= */ true);
            window.setExitTransition(exitTransition);

            window.setAllowEnterTransitionOverlap(true);

            MaterialSharedAxis enterTransition =
                new MaterialSharedAxis(MaterialSharedAxis.X, /* forward= */ true);
            window.setEnterTransition(enterTransition);
          } else {
            Log.w(TAG, "applyForwardTransition: Invalid window=" + window);
          }
        }
      } else {
        Log.w(TAG, "This API is supported from Android Sdk " + VERSION_CODES.LOLLIPOP);
      }
    }
    // For TRANSITION_NO_OVERRIDE or other values, do not override the transition
  }

  /**
   * Apply the transition for going backward which is decided by partner resource {@link
   * PartnerConfig#CONFIG_TRANSITION_TYPE} and system property {@code setupwizard.transition_type}.
   * The default transition that will be applied is {@link #TRANSITION_SLIDE}. The timing to apply
   * the transition is going backward from the next activity to this, or going backward from this
   * activity to the previous.
   *
   * <p>For example, in the flow below, the backward transitions will be applied to all arrows
   * pointing to the left. Previous screen <-- This screen <-- Next screen
   */
  @TargetApi(VERSION_CODES.LOLLIPOP)
  public static void applyBackwardTransition(Activity activity) {
    applyBackwardTransition(activity, TRANSITION_CAPTIVE);
  }

  /**
   * Apply the transition for going backward which is decided by partner resource {@link
   * PartnerConfig#CONFIG_TRANSITION_TYPE} and system property {@code setupwizard.transition_type}.
   * The default transition that will be applied is {@link #CONFIG_TRANSITION_NONE}. The timing to
   * apply the transition is going backward from the next {@link Fragment} to this, or going
   * backward from this {@link Fragment} to the previous.
   */
  @TargetApi(VERSION_CODES.M)
  public static void applyBackwardTransition(Fragment fragment) {
    if (Build.VERSION.SDK_INT >= VERSION_CODES.M) {
      if (getConfigTransitionType(fragment.getContext()) == CONFIG_TRANSITION_SHARED_X_AXIS) {
        MaterialSharedAxis returnTransition =
            new MaterialSharedAxis(MaterialSharedAxis.X, /* forward= */ false);
        fragment.setReturnTransition(returnTransition);

        MaterialSharedAxis reenterTransition =
            new MaterialSharedAxis(MaterialSharedAxis.X, /* forward= */ false);
        fragment.setReenterTransition(reenterTransition);
      } else {
        Log.w(TAG, "Not apply the backward transition for platform fragment.");
      }
    } else {
      Log.w(
          TAG,
          "Not apply the backward transition for platform fragment. The API is supported from"
              + " Android Sdk "
              + VERSION_CODES.M);
    }
  }

  /**
   * Apply the transition for going backward. This is applied when going backward from the next
   * activity to this, or going backward from this activity to the previous.
   *
   * <p>For example, in the flow below, the backward transitions will be applied to all arrows
   * pointing to the left. Previous screen <-- This screen <-- Next screen
   */
  @TargetApi(VERSION_CODES.LOLLIPOP)
  public static void applyBackwardTransition(Activity activity, @TransitionType int transitionId) {
    if (transitionId == TRANSITION_SLIDE) {
      activity.overridePendingTransition(R.anim.sud_slide_back_in, R.anim.sud_slide_back_out);
    } else if (transitionId == TRANSITION_FADE) {
      activity.overridePendingTransition(R.anim.sud_stay, android.R.anim.fade_out);
    } else if (transitionId == TRANSITION_FRAMEWORK_DEFAULT) {
      TypedArray typedArray =
          activity.obtainStyledAttributes(
              android.R.style.Animation_Activity,
              new int[] {
                android.R.attr.activityCloseEnterAnimation,
                android.R.attr.activityCloseExitAnimation
              });
      activity.overridePendingTransition(
          typedArray.getResourceId(/* index= */ 0, /* defValue= */ 0),
          typedArray.getResourceId(/* index= */ 1, /* defValue= */ 0));
      typedArray.recycle();
    } else if (transitionId == TRANSITION_FRAMEWORK_DEFAULT_PRE_P) {
      activity.overridePendingTransition(
          R.anim.sud_pre_p_activity_close_enter, R.anim.sud_pre_p_activity_close_exit);
    } else if (transitionId == TRANSITION_NONE) {
      // For TRANSITION_NONE, turn off the transition
      activity.overridePendingTransition(/* enterAnim= */ 0, /* exitAnim= */ 0);
    } else if (transitionId == TRANSITION_CAPTIVE) {
      if (Build.VERSION.SDK_INT >= VERSION_CODES.LOLLIPOP) {
        // 1. Do not change the transition behavior by default
        // 2. If the flag present, apply the transition from transition type
        if (getConfigTransitionType(activity) == CONFIG_TRANSITION_SHARED_X_AXIS) {
          Window window = activity.getWindow();
          if (window != null) {
            MaterialSharedAxis reenterTransition =
                new MaterialSharedAxis(MaterialSharedAxis.X, /* forward= */ false);
            window.setReenterTransition(reenterTransition);

            MaterialSharedAxis returnTransition =
                new MaterialSharedAxis(MaterialSharedAxis.X, /* forward= */ false);
            window.setReturnTransition(returnTransition);
          } else {
            Log.w(TAG, "applyBackwardTransition: Invalid window=" + window);
          }
        }
      } else {
        Log.w(TAG, "This API is supported from Android Sdk " + VERSION_CODES.LOLLIPOP);
      }
    }
    // For TRANSITION_NO_OVERRIDE or other values, do not override the transition
  }

  /**
   * A wrapper method, create an {@link android.app.ActivityOptions} to transition between
   * activities as the {@link ActivityOptions} parameter of {@link Activity#startActivity}.
   *
   * @throws IllegalArgumentException is thrown when {@code activity} or {@code intent} is null.
   * @throws android.content.ActivityNotFoundException if there was no {@link Activity} found to run
   *     the given Intent.
   */
  public static void startActivityWithTransition(Activity activity, Intent intent) {
    startActivityWithTransition(activity, intent, /* overrideActivityOptions= */ null);
  }

  /**
   * A wrapper method, create an {@link android.app.ActivityOptions} to transition between
   * activities as the {@link ActivityOptions} parameter of {@link Activity#startActivity}.
   *
   * @throws IllegalArgumentException is thrown when {@code activity} or {@code intent} is null.
   * @throws android.content.ActivityNotFoundException if there was no {@link Activity} found to run
   *     the given Intent.
   */
  public static void startActivityWithTransition(
      Activity activity, Intent intent, Bundle overrideActivityOptions) {
    if (activity == null) {
      throw new IllegalArgumentException("Invalid activity=" + activity);
    }

    if (intent == null) {
      throw new IllegalArgumentException("Invalid intent=" + intent);
    }

    if ((intent.getFlags() & Intent.FLAG_ACTIVITY_NEW_TASK) == Intent.FLAG_ACTIVITY_NEW_TASK) {
      Log.e(
          TAG,
          "The transition won't take effect since the WindowManager does not allow override new"
              + " task transitions");
    }

    if (getConfigTransitionType(activity) == CONFIG_TRANSITION_SHARED_X_AXIS) {
      if (Build.VERSION.SDK_INT >= VERSION_CODES.LOLLIPOP) {
        if (activity.getWindow() != null
            && !activity.getWindow().hasFeature(Window.FEATURE_ACTIVITY_TRANSITIONS)) {
          Log.w(
              TAG,
              "The transition won't take effect due to NO FEATURE_ACTIVITY_TRANSITIONS feature");
        }

        Bundle bundleActivityOptions;
        if (overrideActivityOptions != null) {
          bundleActivityOptions = overrideActivityOptions;
        } else {
          bundleActivityOptions = makeActivityOptions(activity, intent);
        }
        intent.putExtra(EXTRA_ACTIVITY_OPTIONS, (Parcelable) bundleActivityOptions);
        activity.startActivity(intent, bundleActivityOptions);
      } else {
        Log.w(
            TAG,
            "Fallback to using startActivity due to the"
                + " ActivityOptions#makeSceneTransitionAnimation is supported from Android Sdk "
                + VERSION_CODES.LOLLIPOP);
        startActivityWithTransitionInternal(activity, intent, overrideActivityOptions);
      }
    } else {
      startActivityWithTransitionInternal(activity, intent, overrideActivityOptions);
    }
  }

  private static void startActivityWithTransitionInternal(
      Activity activity, Intent intent, Bundle overrideActivityOptions) {
    if (Build.VERSION.SDK_INT >= VERSION_CODES.JELLY_BEAN) {
      if (getConfigTransitionType(activity) == CONFIG_TRANSITION_SHARED_X_AXIS
          && overrideActivityOptions != null) {
        activity.startActivity(intent, overrideActivityOptions);
      } else {
        activity.startActivity(intent);
      }
    } else {
      Log.w(
          TAG,
          "Fallback to using startActivity(Intent) due to the startActivity(Intent, Bundle) is"
              + " supported from Android Sdk "
              + VERSION_CODES.JELLY_BEAN);
      activity.startActivity(intent);
    }
  }

  public static void startActivityForResultWithTransition(
      Activity activity, Intent intent, int requestCode) {
    startActivityForResultWithTransition(
        activity, intent, requestCode, /* overrideActivityOptions= */ null);
  }

  /**
   * A wrapper method, create an {@link android.app.ActivityOptions} to transition between
   * activities as the {@code activityOptions} parameter of {@link Activity#startActivityForResult}.
   *
   * @throws IllegalArgumentException is thrown when {@code activity} or {@code intent} is null.
   * @throws android.content.ActivityNotFoundException if there was no {@link Activity} found to run
   *     the given Intent.
   */
  public static void startActivityForResultWithTransition(
      Activity activity, Intent intent, int requestCode, Bundle overrideActivityOptions) {
    if (activity == null) {
      throw new IllegalArgumentException("Invalid activity=" + activity);
    }

    if (intent == null) {
      throw new IllegalArgumentException("Invalid intent=" + intent);
    }

    if ((intent.getFlags() & Intent.FLAG_ACTIVITY_NEW_TASK) == Intent.FLAG_ACTIVITY_NEW_TASK) {
      Log.e(
          TAG,
          "The transition won't take effect since the WindowManager does not allow override new"
              + " task transitions");
    }

    if (getConfigTransitionType(activity) == CONFIG_TRANSITION_SHARED_X_AXIS) {
      if (Build.VERSION.SDK_INT >= VERSION_CODES.LOLLIPOP) {
        if (activity.getWindow() != null
            && !activity.getWindow().hasFeature(Window.FEATURE_ACTIVITY_TRANSITIONS)) {
          Log.w(
              TAG,
              "The transition won't take effect due to NO FEATURE_ACTIVITY_TRANSITIONS feature");
        }

        Bundle bundleActivityOptions;
        if (overrideActivityOptions != null) {
          bundleActivityOptions = overrideActivityOptions;
        } else {
          bundleActivityOptions = makeActivityOptions(activity, intent);
        }
        intent.putExtra(EXTRA_ACTIVITY_OPTIONS, (Parcelable) bundleActivityOptions);
        activity.startActivityForResult(intent, requestCode, bundleActivityOptions);
      } else {
        Log.w(
            TAG,
            "Fallback to using startActivityForResult API due to the"
                + " ActivityOptions#makeSceneTransitionAnimation is supported from Android Sdk "
                + VERSION_CODES.LOLLIPOP);
        startActivityForResultWithTransitionInternal(
            activity, intent, requestCode, overrideActivityOptions);
      }
    } else {
      startActivityForResultWithTransitionInternal(
          activity, intent, requestCode, overrideActivityOptions);
    }
  }

  private static void startActivityForResultWithTransitionInternal(
      Activity activity, Intent intent, int requestCode, Bundle overrideActivityOptions) {
    if (Build.VERSION.SDK_INT >= VERSION_CODES.JELLY_BEAN) {
      if (getConfigTransitionType(activity) == CONFIG_TRANSITION_SHARED_X_AXIS
          && overrideActivityOptions != null) {
        activity.startActivityForResult(intent, requestCode, overrideActivityOptions);
      } else {
        activity.startActivityForResult(intent, requestCode);
      }
    } else {
      Log.w(
          TAG,
          "Fallback to using startActivityForResult(Intent) due to the"
              + " startActivityForResult(Intent,int) is supported from Android Sdk "
              + VERSION_CODES.JELLY_BEAN);
      activity.startActivityForResult(intent, requestCode);
    }
  }

  /**
   * A wrapper method, calling {@link Activity#finishAfterTransition()} to trigger exit transition
   * when running in Android S and the transition type {link #CONFIG_TRANSITION_SHARED_X_AXIS}.
   *
   * @throws IllegalArgumentException is thrown when {@code activity} is null.
   */
  public static void finishActivity(Activity activity) {
    if (activity == null) {
      throw new IllegalArgumentException("Invalid activity=" + activity);
    }

    if (Build.VERSION.SDK_INT >= VERSION_CODES.LOLLIPOP
        && getConfigTransitionType(activity) == CONFIG_TRANSITION_SHARED_X_AXIS) {
      activity.finishAfterTransition();
    } else {
      Log.w(
          TAG,
          "Fallback to using Activity#finish() due to the"
              + " Activity#finishAfterTransition() is supported from Android Sdk "
              + VERSION_CODES.LOLLIPOP);
      activity.finish();
    }
  }

  /**
   * Returns the transition type from the {@link PartnerConfig#CONFIG_TRANSITION_TYPE} partner
   * resource on Android S, otherwise returns {@link #CONFIG_TRANSITION_NONE}.
   */
  public static int getConfigTransitionType(Context context) {
    return BuildCompatUtils.isAtLeastS() && ThemeHelper.shouldApplyExtendedPartnerConfig(context)
        ? PartnerConfigHelper.get(context)
            .getInteger(context, PartnerConfig.CONFIG_TRANSITION_TYPE, CONFIG_TRANSITION_NONE)
        : CONFIG_TRANSITION_NONE;
  }

  /**
   * A wrapper method, create a {@link Bundle} from {@link ActivityOptions} to transition between
   * Activities using cross-Activity scene animations. This {@link Bundle} that can be used with
   * {@link Context#startActivity(Intent, Bundle)} and related methods.
   */
  @Nullable
  public static Bundle makeActivityOptions(Activity activity, Intent intent) {
    Bundle resultBundle = null;
    if (activity == null || intent == null) {
      return resultBundle;
    }

    if ((intent.getFlags() & Intent.FLAG_ACTIVITY_NEW_TASK) == Intent.FLAG_ACTIVITY_NEW_TASK) {
      Log.e(
          TAG,
          "The transition won't take effect since the WindowManager does not allow override new"
              + " task transitions");
    }

    if (getConfigTransitionType(activity) == CONFIG_TRANSITION_SHARED_X_AXIS) {
      if (Build.VERSION.SDK_INT >= VERSION_CODES.LOLLIPOP) {
        if (activity.getWindow() != null
            && !activity.getWindow().hasFeature(Window.FEATURE_ACTIVITY_TRANSITIONS)) {
          Log.w(
              TAG,
              "The transition won't take effect due to NO FEATURE_ACTIVITY_TRANSITIONS feature");
        }

        resultBundle = ActivityOptions.makeSceneTransitionAnimation(activity).toBundle();
        intent.putExtra(EXTRA_ACTIVITY_OPTIONS, (Parcelable) resultBundle);
        return resultBundle;
      }
    }

    return resultBundle;
  }
}