Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bb4665d4 authored by Android Build Merger (Role)'s avatar Android Build Merger (Role) Committed by Android (Google) Code Review
Browse files

Merge changes from topic 'am-3df7247558f2482ba6861f739fe61c7e'

* changes:
  Merge changes from topic 'chooser' into oc-dev am: 28602c09 am: 4d0f44d7
  Create a valid ActivityOptions Bundle even for default animations am: b759bd3b am: d85e60aa
  Remove scale up animation for startActivity from RemoteViews am: 95b193fd am: 594f401e
parents cd03c6a8 d5770944
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -1211,9 +1211,6 @@ public class ActivityOptions {
     * methods that take an options Bundle.
     */
    public Bundle toBundle() {
        if (mAnimationType == ANIM_DEFAULT) {
            return null;
        }
        Bundle b = new Bundle();
        if (mPackageName != null) {
            b.putString(KEY_PACKAGE_NAME, mPackageName);
+1 −3
Original line number Diff line number Diff line
@@ -252,9 +252,7 @@ public class RemoteViews implements Parcelable, Filter {
                if (mEnterAnimationId != 0) {
                    opts = ActivityOptions.makeCustomAnimation(context, mEnterAnimationId, 0);
                } else {
                    opts = ActivityOptions.makeScaleUpAnimation(view,
                            0, 0,
                            view.getMeasuredWidth(), view.getMeasuredHeight());
                    opts = ActivityOptions.makeBasic();
                }

                if (launchStackId != StackId.INVALID_STACK_ID) {
+2 −0
Original line number Diff line number Diff line
@@ -794,6 +794,8 @@ easier.

    <!-- Theme used for the intent picker activity. -->
    <style name="Theme.DeviceDefault.Resolver" parent="Theme.Material.Light">
        <item name="windowEnterTransition">@empty</item>
        <item name="windowExitTransition">@empty</item>
        <item name="windowIsTranslucent">true</item>
        <item name="windowNoTitle">true</item>
        <item name="windowBackground">@color/transparent</item>