diff options
| -rw-r--r-- | core/java/android/widget/RemoteViews.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/core/java/android/widget/RemoteViews.java b/core/java/android/widget/RemoteViews.java index 9245134fd266..036b39100286 100644 --- a/core/java/android/widget/RemoteViews.java +++ b/core/java/android/widget/RemoteViews.java @@ -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) { |