Merge "Fix widget animation truncated at drop if a widget is resized" into sc-dev am: d9128413cc

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Launcher3/+/15159890

Change-Id: I27b79b08006cd2bcf850cb2a7976de914a35d7a5
This commit is contained in:
Steven Ng
2021-07-01 10:48:57 +00:00
committed by Automerger Merge Worker
@@ -472,12 +472,12 @@ public class DragView extends FrameLayout implements StateListener<LauncherState
mContent.draw(picture.beginRecording(mWidth, mHeight));
picture.endRecording();
View view = new View(mLauncher);
view.setClipToOutline(mContent.getClipToOutline());
view.setOutlineProvider(mContent.getOutlineProvider());
view.setBackground(new PictureDrawable(picture));
view.measure(makeMeasureSpec(mWidth, EXACTLY), makeMeasureSpec(mHeight, EXACTLY));
view.layout(mContent.getLeft(), mContent.getTop(),
mContent.getRight(), mContent.getBottom());
setClipToOutline(mContent.getClipToOutline());
setOutlineProvider(mContent.getOutlineProvider());
addViewInLayout(view, indexOfChild(mContent), mContent.getLayoutParams(), true);
removeViewInLayout(mContent);