Loading core/java/android/view/View.java +7 −6 Original line number Diff line number Diff line Loading @@ -12028,14 +12028,15 @@ public class View implements Drawable.Callback2, KeyEvent.Callback, Accessibilit mPrivateFlags |= FORCE_LAYOUT; mPrivateFlags |= INVALIDATED; if (mLayoutParams != null && mParent != null) { if (mParent != null) { if (mLayoutParams != null) { mLayoutParams.resolveWithDirection(getResolvedLayoutDirection()); } if (mParent != null && !mParent.isLayoutRequested()) { if (!mParent.isLayoutRequested()) { mParent.requestLayout(); } } } /** * Forces this view to be laid out during the next layout pass. Loading Loading
core/java/android/view/View.java +7 −6 Original line number Diff line number Diff line Loading @@ -12028,14 +12028,15 @@ public class View implements Drawable.Callback2, KeyEvent.Callback, Accessibilit mPrivateFlags |= FORCE_LAYOUT; mPrivateFlags |= INVALIDATED; if (mLayoutParams != null && mParent != null) { if (mParent != null) { if (mLayoutParams != null) { mLayoutParams.resolveWithDirection(getResolvedLayoutDirection()); } if (mParent != null && !mParent.isLayoutRequested()) { if (!mParent.isLayoutRequested()) { mParent.requestLayout(); } } } /** * Forces this view to be laid out during the next layout pass. Loading