Fixing bug where widget preview wasn't fully updated upon drop

-> The prebound widget is now added to the DragLayer to ensure
   that it goes through all necessary measure/layout/attach etc.

Change-Id: I53ca32e88fcbc2211d2747c3b067816c0d518e30
This commit is contained in:
Adam Cohen
2012-02-14 20:54:05 -08:00
parent 038085598c
commit ef3dd6efe0
2 changed files with 4 additions and 14 deletions
+1 -14
View File
@@ -3003,23 +3003,11 @@ public class Workspace extends SmoothPagedView
}
}
// The following methods deal with animating an item from external drop
void onPreDraw(View v) {
if (v instanceof ViewGroup) {
ViewGroup vg = (ViewGroup) v;
for (int i = 0; i < vg.getChildCount(); i++) {
View child = vg.getChildAt(i);
onPreDraw(child);
}
} else if (v instanceof TextView) {
((TextView) v).onPreDraw();
}
}
public Bitmap createWidgetBitmap(PendingAddWidgetInfo widgetInfo) {
int[] unScaledSize = mLauncher.getWorkspace().estimateItemSize(widgetInfo.spanX,
widgetInfo.spanY, widgetInfo, false);
View layout = widgetInfo.boundWidget;
mLauncher.getDragLayer().removeView(layout);
layout.setVisibility(VISIBLE);
int width = MeasureSpec.makeMeasureSpec(unScaledSize[0], MeasureSpec.EXACTLY);
@@ -3030,7 +3018,6 @@ public class Workspace extends SmoothPagedView
layout.measure(width, height);
layout.layout(0, 0, unScaledSize[0], unScaledSize[1]);
onPreDraw(layout);
layout.draw(c);
c.setBitmap(null);
return b;