Merge "Account for background drawable size changing when lrtb properties change"

This commit is contained in:
Chet Haase
2010-12-22 07:12:24 -08:00
committed by Android (Google) Code Review

View File

@@ -5830,6 +5830,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, Accessibility
mPrivateFlags |= DRAWN; // force another invalidation with the new orientation
invalidate();
}
mBackgroundSizeChanged = true;
}
}
@@ -5882,6 +5883,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, Accessibility
mPrivateFlags |= DRAWN; // force another invalidation with the new orientation
invalidate();
}
mBackgroundSizeChanged = true;
}
}
@@ -5937,7 +5939,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, Accessibility
mPrivateFlags |= DRAWN; // force another invalidation with the new orientation
invalidate();
}
mBackgroundSizeChanged = true;
}
}
@@ -5990,6 +5992,7 @@ public class View implements Drawable.Callback, KeyEvent.Callback, Accessibility
mPrivateFlags |= DRAWN; // force another invalidation with the new orientation
invalidate();
}
mBackgroundSizeChanged = true;
}
}