Loading api/current.txt +2 −2 Original line number Diff line number Diff line Loading @@ -24493,12 +24493,12 @@ package android.view { method public void startLayoutAnimation(); method public void startViewTransition(android.view.View); method public void updateViewLayout(android.view.View, android.view.ViewGroup.LayoutParams); field public static final int CLIP_BOUNDS = 0; // 0x0 field protected static final int CLIP_TO_PADDING_MASK = 34; // 0x22 field public static final int COMPONENT_BOUNDS = 0; // 0x0 field public static final int FOCUS_AFTER_DESCENDANTS = 262144; // 0x40000 field public static final int FOCUS_BEFORE_DESCENDANTS = 131072; // 0x20000 field public static final int FOCUS_BLOCK_DESCENDANTS = 393216; // 0x60000 field public static final int LAYOUT_BOUNDS = 1; // 0x1 field public static final int OPTICAL_BOUNDS = 1; // 0x1 field public static final int PERSISTENT_ALL_CACHES = 3; // 0x3 field public static final int PERSISTENT_ANIMATION_CACHE = 1; // 0x1 field public static final int PERSISTENT_NO_CACHE = 0; // 0x0 core/java/android/view/View.java +1 −1 Original line number Diff line number Diff line Loading @@ -13853,7 +13853,7 @@ public class View implements Drawable.Callback, Drawable.Callback2, KeyEvent.Cal /** * @hide */ public Insets getLayoutInsets() { public Insets getOpticalInsets() { if (mLayoutInsets == null) { mLayoutInsets = (mBackground == null) ? Insets.NONE : mBackground.getLayoutInsets(); } core/java/android/view/ViewGroup.java +15 −30 Original line number Diff line number Diff line Loading @@ -173,10 +173,9 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager protected int mGroupFlags; /* * THe layout mode: either {@link #UNDEFINED_LAYOUT_MODE}, {@link #COMPONENT_BOUNDS} or * {@link #LAYOUT_BOUNDS} * The layout mode: either {@link #CLIP_BOUNDS} or {@link #OPTICAL_BOUNDS} */ private int mLayoutMode = UNDEFINED_LAYOUT_MODE; private int mLayoutMode = CLIP_BOUNDS; /** * NOTE: If you change the flags below make sure to reflect the changes Loading Loading @@ -345,19 +344,20 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager // Layout Modes private static final int UNDEFINED_LAYOUT_MODE = -1; /** * This constant is a {@link #setLayoutMode(int) layoutMode}. * Component bounds are the raw values of {@link #getLeft() left}, {@link #getTop() top}, * Clip bounds are the raw values of {@link #getLeft() left}, {@link #getTop() top}, * {@link #getRight() right} and {@link #getBottom() bottom}. */ public static final int COMPONENT_BOUNDS = 0; public static final int CLIP_BOUNDS = 0; /** * This constant is a {@link #setLayoutMode(int) layoutMode}. * Optical bounds describe where a widget appears to be. They sit inside the clip * bounds which need to cover a larger area to allow other effects, * such as shadows and glows, to be drawn. */ public static final int LAYOUT_BOUNDS = 1; public static final int OPTICAL_BOUNDS = 1; /** * We clip to padding when FLAG_CLIP_TO_PADDING and FLAG_PADDING_NOT_NULL Loading Loading @@ -2690,10 +2690,10 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager */ protected void onDebugDraw(Canvas canvas) { // Draw optical bounds if (getLayoutMode() == LAYOUT_BOUNDS) { if (getLayoutMode() == OPTICAL_BOUNDS) { for (int i = 0; i < getChildCount(); i++) { View c = getChildAt(i); Insets insets = c.getLayoutInsets(); Insets insets = c.getOpticalInsets(); drawRect(canvas, c.getLeft() + insets.left, c.getTop() + insets.top, Loading Loading @@ -4591,37 +4591,22 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager } /** * Returns the basis of alignment during the layout of this view group: * either {@link #COMPONENT_BOUNDS} or {@link #LAYOUT_BOUNDS}. * Returns the basis of alignment during layout operations on this view group: * either {@link #CLIP_BOUNDS} or {@link #OPTICAL_BOUNDS}. * * @return the layout mode to use during layout operations * * @see #setLayoutMode(int) */ public int getLayoutMode() { if (mLayoutMode == UNDEFINED_LAYOUT_MODE) { ViewParent parent = getParent(); if (parent instanceof ViewGroup) { ViewGroup viewGroup = (ViewGroup) parent; return viewGroup.getLayoutMode(); } else { int targetSdkVersion = mContext.getApplicationInfo().targetSdkVersion; boolean preJellyBean = targetSdkVersion < Build.VERSION_CODES.JELLY_BEAN; return preJellyBean ? COMPONENT_BOUNDS : LAYOUT_BOUNDS; } } return mLayoutMode; } /** * Sets the basis of alignment during alignment of this view group. * Valid values are either {@link #COMPONENT_BOUNDS} or {@link #LAYOUT_BOUNDS}. * Sets the basis of alignment during the layout of this view group. * Valid values are either {@link #CLIP_BOUNDS} or {@link #OPTICAL_BOUNDS}. * <p> * The default is to query the property of the parent if this view group has a parent. * If this ViewGroup is the root of the view hierarchy the default * value is {@link #LAYOUT_BOUNDS} for target SDK's greater than JellyBean, * {@link #LAYOUT_BOUNDS} otherwise. * The default is {@link #CLIP_BOUNDS}. * * @param layoutMode the layout mode to use during layout operations * Loading core/java/android/widget/GridLayout.java +42 −33 Original line number Diff line number Diff line Loading @@ -581,10 +581,10 @@ public class GridLayout extends ViewGroup { } private int getDefaultMargin(View c, boolean isAtEdge, boolean horizontal, boolean leading) { return isAtEdge ? DEFAULT_CONTAINER_MARGIN : getDefaultMargin(c, horizontal, leading); return /*isAtEdge ? DEFAULT_CONTAINER_MARGIN :*/ getDefaultMargin(c, horizontal, leading); } private int getDefaultMarginValue(View c, LayoutParams p, boolean horizontal, boolean leading) { private int getDefaultMargin(View c, LayoutParams p, boolean horizontal, boolean leading) { if (!useDefaultMargins) { return 0; } Loading @@ -602,7 +602,7 @@ public class GridLayout extends ViewGroup { int margin = horizontal ? (leading ? lp.leftMargin : lp.rightMargin) : (leading ? lp.topMargin : lp.bottomMargin); return margin == UNDEFINED ? getDefaultMarginValue(view, lp, horizontal, leading) : margin; return margin == UNDEFINED ? getDefaultMargin(view, lp, horizontal, leading) : margin; } private int getMargin(View view, boolean horizontal, boolean leading) { Loading Loading @@ -777,11 +777,12 @@ public class GridLayout extends ViewGroup { LayoutParams lp = new LayoutParams(); for (int i = 0; i < getChildCount(); i++) { View c = getChildAt(i); Insets insets = getLayoutMode() == OPTICAL_BOUNDS ? c.getOpticalInsets() : Insets.NONE; lp.setMargins( getMargin1(c, true, true), getMargin1(c, false, true), getMargin1(c, true, false), getMargin1(c, false, false)); getMargin1(c, true, true) - insets.left, getMargin1(c, false, true) - insets.top, getMargin1(c, true, false) - insets.right, getMargin1(c, false, false) - insets.bottom); lp.onDebugDraw(c, canvas); } } Loading Loading @@ -946,7 +947,12 @@ public class GridLayout extends ViewGroup { } private int getMeasurement(View c, boolean horizontal) { return horizontal ? c.getMeasuredWidth() : c.getMeasuredHeight(); int result = horizontal ? c.getMeasuredWidth() : c.getMeasuredHeight(); if (getLayoutMode() == OPTICAL_BOUNDS) { Insets insets = c.getOpticalInsets(); return result - (horizontal ? insets.left + insets.right : insets.top + insets.bottom); } return result; } final int getMeasurementIncludingMargin(View c, boolean horizontal) { Loading Loading @@ -1052,6 +1058,14 @@ public class GridLayout extends ViewGroup { targetWidth - width - paddingRight - rightMargin - dx; int cy = paddingTop + y1 + gravityOffsetY + alignmentOffsetY + topMargin; boolean useLayoutBounds = getLayoutMode() == OPTICAL_BOUNDS; if (useLayoutBounds) { Insets insets = c.getOpticalInsets(); cx -= insets.left; cy -= insets.top; width += (insets.left + insets.right); height += (insets.top + insets.bottom); } if (width != c.getMeasuredWidth() || height != c.getMeasuredHeight()) { c.measure(makeMeasureSpec(width, EXACTLY), makeMeasureSpec(height, EXACTLY)); } Loading Loading @@ -2135,21 +2149,8 @@ public class GridLayout extends ViewGroup { return before + after; } private int getAlignmentValue(GridLayout gl, View c, int size, Alignment a, boolean horiz) { boolean useLayoutBounds = gl.getLayoutMode() == LAYOUT_BOUNDS; if (!useLayoutBounds) { return a.getAlignmentValue(c, size); } else { Insets insets = c.getLayoutInsets(); int leadingInset = horiz ? insets.left : insets.top; // RTL? int trailingInset = horiz ? insets.right : insets.bottom; // RTL? int totalInset = leadingInset + trailingInset; return leadingInset + a.getAlignmentValue(c, size - totalInset); } } protected int getOffset(GridLayout gl, View c, Alignment a, int size, boolean horizontal) { return before - getAlignmentValue(gl, c, size, a, horizontal); return before - a.getAlignmentValue(c, size, gl.getLayoutMode()); } protected final void include(GridLayout gl, View c, Spec spec, Axis axis) { Loading @@ -2158,7 +2159,7 @@ public class GridLayout extends ViewGroup { int size = gl.getMeasurementIncludingMargin(c, horizontal); Alignment alignment = gl.getAlignment(spec.alignment, horizontal); // todo test this works correctly when the returned value is UNDEFINED int before = getAlignmentValue(gl, c, size, alignment, horizontal); int before = alignment.getAlignmentValue(c, size, gl.getLayoutMode()); include(before, size - before); } Loading Loading @@ -2441,9 +2442,10 @@ public class GridLayout extends ViewGroup { * * @param view the view to which this alignment should be applied * @param viewSize the measured size of the view * @param mode the basis of alignment: CLIP or OPTICAL * @return the alignment value */ abstract int getAlignmentValue(View view, int viewSize); abstract int getAlignmentValue(View view, int viewSize, int mode); /** * Returns the size of the view specified by this alignment. Loading Loading @@ -2473,7 +2475,7 @@ public class GridLayout extends ViewGroup { } @Override public int getAlignmentValue(View view, int viewSize) { public int getAlignmentValue(View view, int viewSize, int mode) { return UNDEFINED; } }; Loading @@ -2489,7 +2491,7 @@ public class GridLayout extends ViewGroup { } @Override public int getAlignmentValue(View view, int viewSize) { public int getAlignmentValue(View view, int viewSize, int mode) { return 0; } }; Loading @@ -2505,7 +2507,7 @@ public class GridLayout extends ViewGroup { } @Override public int getAlignmentValue(View view, int viewSize) { public int getAlignmentValue(View view, int viewSize, int mode) { return viewSize; } }; Loading Loading @@ -2542,8 +2544,8 @@ public class GridLayout extends ViewGroup { } @Override public int getAlignmentValue(View view, int viewSize) { return (!view.isLayoutRtl() ? ltr : rtl).getAlignmentValue(view, viewSize); public int getAlignmentValue(View view, int viewSize, int mode) { return (!view.isLayoutRtl() ? ltr : rtl).getAlignmentValue(view, viewSize, mode); } }; } Loading Loading @@ -2572,7 +2574,7 @@ public class GridLayout extends ViewGroup { } @Override public int getAlignmentValue(View view, int viewSize) { public int getAlignmentValue(View view, int viewSize, int mode) { return viewSize >> 1; } }; Loading @@ -2591,9 +2593,16 @@ public class GridLayout extends ViewGroup { } @Override public int getAlignmentValue(View view, int viewSize) { public int getAlignmentValue(View view, int viewSize, int mode) { int baseline = view.getBaseline(); return (baseline == -1) ? UNDEFINED : baseline; if (baseline == -1) { return UNDEFINED; } else { if (mode == OPTICAL_BOUNDS) { return baseline - view.getOpticalInsets().top; } return baseline; } } @Override Loading Loading @@ -2644,7 +2653,7 @@ public class GridLayout extends ViewGroup { } @Override public int getAlignmentValue(View view, int viewSize) { public int getAlignmentValue(View view, int viewSize, int mode) { return UNDEFINED; } Loading core/res/res/values/dimens.xml +1 −1 Original line number Diff line number Diff line Loading @@ -194,7 +194,7 @@ <dimen name="activity_chooser_popup_min_width">200dip</dimen> <!-- The default gap between components in a layout. --> <dimen name="default_gap">16dip</dimen> <dimen name="default_gap">8dip</dimen> <!-- Text padding for dropdown items --> <dimen name="dropdownitem_text_padding_left">8dip</dimen> Loading Loading
api/current.txt +2 −2 Original line number Diff line number Diff line Loading @@ -24493,12 +24493,12 @@ package android.view { method public void startLayoutAnimation(); method public void startViewTransition(android.view.View); method public void updateViewLayout(android.view.View, android.view.ViewGroup.LayoutParams); field public static final int CLIP_BOUNDS = 0; // 0x0 field protected static final int CLIP_TO_PADDING_MASK = 34; // 0x22 field public static final int COMPONENT_BOUNDS = 0; // 0x0 field public static final int FOCUS_AFTER_DESCENDANTS = 262144; // 0x40000 field public static final int FOCUS_BEFORE_DESCENDANTS = 131072; // 0x20000 field public static final int FOCUS_BLOCK_DESCENDANTS = 393216; // 0x60000 field public static final int LAYOUT_BOUNDS = 1; // 0x1 field public static final int OPTICAL_BOUNDS = 1; // 0x1 field public static final int PERSISTENT_ALL_CACHES = 3; // 0x3 field public static final int PERSISTENT_ANIMATION_CACHE = 1; // 0x1 field public static final int PERSISTENT_NO_CACHE = 0; // 0x0
core/java/android/view/View.java +1 −1 Original line number Diff line number Diff line Loading @@ -13853,7 +13853,7 @@ public class View implements Drawable.Callback, Drawable.Callback2, KeyEvent.Cal /** * @hide */ public Insets getLayoutInsets() { public Insets getOpticalInsets() { if (mLayoutInsets == null) { mLayoutInsets = (mBackground == null) ? Insets.NONE : mBackground.getLayoutInsets(); }
core/java/android/view/ViewGroup.java +15 −30 Original line number Diff line number Diff line Loading @@ -173,10 +173,9 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager protected int mGroupFlags; /* * THe layout mode: either {@link #UNDEFINED_LAYOUT_MODE}, {@link #COMPONENT_BOUNDS} or * {@link #LAYOUT_BOUNDS} * The layout mode: either {@link #CLIP_BOUNDS} or {@link #OPTICAL_BOUNDS} */ private int mLayoutMode = UNDEFINED_LAYOUT_MODE; private int mLayoutMode = CLIP_BOUNDS; /** * NOTE: If you change the flags below make sure to reflect the changes Loading Loading @@ -345,19 +344,20 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager // Layout Modes private static final int UNDEFINED_LAYOUT_MODE = -1; /** * This constant is a {@link #setLayoutMode(int) layoutMode}. * Component bounds are the raw values of {@link #getLeft() left}, {@link #getTop() top}, * Clip bounds are the raw values of {@link #getLeft() left}, {@link #getTop() top}, * {@link #getRight() right} and {@link #getBottom() bottom}. */ public static final int COMPONENT_BOUNDS = 0; public static final int CLIP_BOUNDS = 0; /** * This constant is a {@link #setLayoutMode(int) layoutMode}. * Optical bounds describe where a widget appears to be. They sit inside the clip * bounds which need to cover a larger area to allow other effects, * such as shadows and glows, to be drawn. */ public static final int LAYOUT_BOUNDS = 1; public static final int OPTICAL_BOUNDS = 1; /** * We clip to padding when FLAG_CLIP_TO_PADDING and FLAG_PADDING_NOT_NULL Loading Loading @@ -2690,10 +2690,10 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager */ protected void onDebugDraw(Canvas canvas) { // Draw optical bounds if (getLayoutMode() == LAYOUT_BOUNDS) { if (getLayoutMode() == OPTICAL_BOUNDS) { for (int i = 0; i < getChildCount(); i++) { View c = getChildAt(i); Insets insets = c.getLayoutInsets(); Insets insets = c.getOpticalInsets(); drawRect(canvas, c.getLeft() + insets.left, c.getTop() + insets.top, Loading Loading @@ -4591,37 +4591,22 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager } /** * Returns the basis of alignment during the layout of this view group: * either {@link #COMPONENT_BOUNDS} or {@link #LAYOUT_BOUNDS}. * Returns the basis of alignment during layout operations on this view group: * either {@link #CLIP_BOUNDS} or {@link #OPTICAL_BOUNDS}. * * @return the layout mode to use during layout operations * * @see #setLayoutMode(int) */ public int getLayoutMode() { if (mLayoutMode == UNDEFINED_LAYOUT_MODE) { ViewParent parent = getParent(); if (parent instanceof ViewGroup) { ViewGroup viewGroup = (ViewGroup) parent; return viewGroup.getLayoutMode(); } else { int targetSdkVersion = mContext.getApplicationInfo().targetSdkVersion; boolean preJellyBean = targetSdkVersion < Build.VERSION_CODES.JELLY_BEAN; return preJellyBean ? COMPONENT_BOUNDS : LAYOUT_BOUNDS; } } return mLayoutMode; } /** * Sets the basis of alignment during alignment of this view group. * Valid values are either {@link #COMPONENT_BOUNDS} or {@link #LAYOUT_BOUNDS}. * Sets the basis of alignment during the layout of this view group. * Valid values are either {@link #CLIP_BOUNDS} or {@link #OPTICAL_BOUNDS}. * <p> * The default is to query the property of the parent if this view group has a parent. * If this ViewGroup is the root of the view hierarchy the default * value is {@link #LAYOUT_BOUNDS} for target SDK's greater than JellyBean, * {@link #LAYOUT_BOUNDS} otherwise. * The default is {@link #CLIP_BOUNDS}. * * @param layoutMode the layout mode to use during layout operations * Loading
core/java/android/widget/GridLayout.java +42 −33 Original line number Diff line number Diff line Loading @@ -581,10 +581,10 @@ public class GridLayout extends ViewGroup { } private int getDefaultMargin(View c, boolean isAtEdge, boolean horizontal, boolean leading) { return isAtEdge ? DEFAULT_CONTAINER_MARGIN : getDefaultMargin(c, horizontal, leading); return /*isAtEdge ? DEFAULT_CONTAINER_MARGIN :*/ getDefaultMargin(c, horizontal, leading); } private int getDefaultMarginValue(View c, LayoutParams p, boolean horizontal, boolean leading) { private int getDefaultMargin(View c, LayoutParams p, boolean horizontal, boolean leading) { if (!useDefaultMargins) { return 0; } Loading @@ -602,7 +602,7 @@ public class GridLayout extends ViewGroup { int margin = horizontal ? (leading ? lp.leftMargin : lp.rightMargin) : (leading ? lp.topMargin : lp.bottomMargin); return margin == UNDEFINED ? getDefaultMarginValue(view, lp, horizontal, leading) : margin; return margin == UNDEFINED ? getDefaultMargin(view, lp, horizontal, leading) : margin; } private int getMargin(View view, boolean horizontal, boolean leading) { Loading Loading @@ -777,11 +777,12 @@ public class GridLayout extends ViewGroup { LayoutParams lp = new LayoutParams(); for (int i = 0; i < getChildCount(); i++) { View c = getChildAt(i); Insets insets = getLayoutMode() == OPTICAL_BOUNDS ? c.getOpticalInsets() : Insets.NONE; lp.setMargins( getMargin1(c, true, true), getMargin1(c, false, true), getMargin1(c, true, false), getMargin1(c, false, false)); getMargin1(c, true, true) - insets.left, getMargin1(c, false, true) - insets.top, getMargin1(c, true, false) - insets.right, getMargin1(c, false, false) - insets.bottom); lp.onDebugDraw(c, canvas); } } Loading Loading @@ -946,7 +947,12 @@ public class GridLayout extends ViewGroup { } private int getMeasurement(View c, boolean horizontal) { return horizontal ? c.getMeasuredWidth() : c.getMeasuredHeight(); int result = horizontal ? c.getMeasuredWidth() : c.getMeasuredHeight(); if (getLayoutMode() == OPTICAL_BOUNDS) { Insets insets = c.getOpticalInsets(); return result - (horizontal ? insets.left + insets.right : insets.top + insets.bottom); } return result; } final int getMeasurementIncludingMargin(View c, boolean horizontal) { Loading Loading @@ -1052,6 +1058,14 @@ public class GridLayout extends ViewGroup { targetWidth - width - paddingRight - rightMargin - dx; int cy = paddingTop + y1 + gravityOffsetY + alignmentOffsetY + topMargin; boolean useLayoutBounds = getLayoutMode() == OPTICAL_BOUNDS; if (useLayoutBounds) { Insets insets = c.getOpticalInsets(); cx -= insets.left; cy -= insets.top; width += (insets.left + insets.right); height += (insets.top + insets.bottom); } if (width != c.getMeasuredWidth() || height != c.getMeasuredHeight()) { c.measure(makeMeasureSpec(width, EXACTLY), makeMeasureSpec(height, EXACTLY)); } Loading Loading @@ -2135,21 +2149,8 @@ public class GridLayout extends ViewGroup { return before + after; } private int getAlignmentValue(GridLayout gl, View c, int size, Alignment a, boolean horiz) { boolean useLayoutBounds = gl.getLayoutMode() == LAYOUT_BOUNDS; if (!useLayoutBounds) { return a.getAlignmentValue(c, size); } else { Insets insets = c.getLayoutInsets(); int leadingInset = horiz ? insets.left : insets.top; // RTL? int trailingInset = horiz ? insets.right : insets.bottom; // RTL? int totalInset = leadingInset + trailingInset; return leadingInset + a.getAlignmentValue(c, size - totalInset); } } protected int getOffset(GridLayout gl, View c, Alignment a, int size, boolean horizontal) { return before - getAlignmentValue(gl, c, size, a, horizontal); return before - a.getAlignmentValue(c, size, gl.getLayoutMode()); } protected final void include(GridLayout gl, View c, Spec spec, Axis axis) { Loading @@ -2158,7 +2159,7 @@ public class GridLayout extends ViewGroup { int size = gl.getMeasurementIncludingMargin(c, horizontal); Alignment alignment = gl.getAlignment(spec.alignment, horizontal); // todo test this works correctly when the returned value is UNDEFINED int before = getAlignmentValue(gl, c, size, alignment, horizontal); int before = alignment.getAlignmentValue(c, size, gl.getLayoutMode()); include(before, size - before); } Loading Loading @@ -2441,9 +2442,10 @@ public class GridLayout extends ViewGroup { * * @param view the view to which this alignment should be applied * @param viewSize the measured size of the view * @param mode the basis of alignment: CLIP or OPTICAL * @return the alignment value */ abstract int getAlignmentValue(View view, int viewSize); abstract int getAlignmentValue(View view, int viewSize, int mode); /** * Returns the size of the view specified by this alignment. Loading Loading @@ -2473,7 +2475,7 @@ public class GridLayout extends ViewGroup { } @Override public int getAlignmentValue(View view, int viewSize) { public int getAlignmentValue(View view, int viewSize, int mode) { return UNDEFINED; } }; Loading @@ -2489,7 +2491,7 @@ public class GridLayout extends ViewGroup { } @Override public int getAlignmentValue(View view, int viewSize) { public int getAlignmentValue(View view, int viewSize, int mode) { return 0; } }; Loading @@ -2505,7 +2507,7 @@ public class GridLayout extends ViewGroup { } @Override public int getAlignmentValue(View view, int viewSize) { public int getAlignmentValue(View view, int viewSize, int mode) { return viewSize; } }; Loading Loading @@ -2542,8 +2544,8 @@ public class GridLayout extends ViewGroup { } @Override public int getAlignmentValue(View view, int viewSize) { return (!view.isLayoutRtl() ? ltr : rtl).getAlignmentValue(view, viewSize); public int getAlignmentValue(View view, int viewSize, int mode) { return (!view.isLayoutRtl() ? ltr : rtl).getAlignmentValue(view, viewSize, mode); } }; } Loading Loading @@ -2572,7 +2574,7 @@ public class GridLayout extends ViewGroup { } @Override public int getAlignmentValue(View view, int viewSize) { public int getAlignmentValue(View view, int viewSize, int mode) { return viewSize >> 1; } }; Loading @@ -2591,9 +2593,16 @@ public class GridLayout extends ViewGroup { } @Override public int getAlignmentValue(View view, int viewSize) { public int getAlignmentValue(View view, int viewSize, int mode) { int baseline = view.getBaseline(); return (baseline == -1) ? UNDEFINED : baseline; if (baseline == -1) { return UNDEFINED; } else { if (mode == OPTICAL_BOUNDS) { return baseline - view.getOpticalInsets().top; } return baseline; } } @Override Loading Loading @@ -2644,7 +2653,7 @@ public class GridLayout extends ViewGroup { } @Override public int getAlignmentValue(View view, int viewSize) { public int getAlignmentValue(View view, int viewSize, int mode) { return UNDEFINED; } Loading
core/res/res/values/dimens.xml +1 −1 Original line number Diff line number Diff line Loading @@ -194,7 +194,7 @@ <dimen name="activity_chooser_popup_min_width">200dip</dimen> <!-- The default gap between components in a layout. --> <dimen name="default_gap">16dip</dimen> <dimen name="default_gap">8dip</dimen> <!-- Text padding for dropdown items --> <dimen name="dropdownitem_text_padding_left">8dip</dimen> Loading