Merge "Fix widget animation truncated at drop if a widget is resized" into sc-dev
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user