Merge "Preventing padding from getting reset when the widget updates" into ub-launcher3-edmonton-polish

This commit is contained in:
TreeHugger Robot
2018-08-22 21:41:33 +00:00
committed by Android (Google) Code Review
2 changed files with 5 additions and 1 deletions
@@ -162,7 +162,6 @@ public class QsbContainerView extends FrameLayout {
.getAppWidgetOptions(widgetId), opts)) {
mQsb.updateAppWidgetOptions(opts);
}
mQsb.setPadding(0, 0, 0, 0);
mQsbWidgetHost.startListening();
return mQsb;
}
@@ -52,6 +52,11 @@ public class QsbWidgetHostView extends AppWidgetHostView {
return mPreviousOrientation != orientation;
}
@Override
public void setPadding(int left, int top, int right, int bottom) {
// Prevent the base class from applying the default widget padding.
super.setPadding(0, 0, 0, 0);
}
@Override
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {