Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7bb66c9c authored by Philip Milne's avatar Philip Milne
Browse files

Hide optical bounds feature for JB.

Change-Id: I1fe38e9c64515acd550baa930ebc0af4c139bf40
parent 44e3f88f
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -24594,7 +24594,6 @@ package android.view {
    method public android.view.View getFocusedChild();
    method public android.view.animation.LayoutAnimationController getLayoutAnimation();
    method public android.view.animation.Animation.AnimationListener getLayoutAnimationListener();
    method public int getLayoutMode();
    method public android.animation.LayoutTransition getLayoutTransition();
    method public int getPersistentDrawingCache();
    method public int indexOfChild(android.view.View);
@@ -24642,7 +24641,6 @@ package android.view {
    method public void setDescendantFocusability(int);
    method public void setLayoutAnimation(android.view.animation.LayoutAnimationController);
    method public void setLayoutAnimationListener(android.view.animation.Animation.AnimationListener);
    method public void setLayoutMode(int);
    method public void setLayoutTransition(android.animation.LayoutTransition);
    method public void setMotionEventSplittingEnabled(boolean);
    method public void setOnHierarchyChangeListener(android.view.ViewGroup.OnHierarchyChangeListener);
@@ -24654,12 +24652,10 @@ 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 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 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
+8 −0
Original line number Diff line number Diff line
@@ -348,6 +348,8 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager
     * This constant is a {@link #setLayoutMode(int) layoutMode}.
     * Clip bounds are the raw values of {@link #getLeft() left}, {@link #getTop() top},
     * {@link #getRight() right} and {@link #getBottom() bottom}.
     *
     * @hide
     */
    public static final int CLIP_BOUNDS = 0;

@@ -356,6 +358,8 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager
     * 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.
     *
     * @hide
     */
    public static final int OPTICAL_BOUNDS = 1;

@@ -4539,6 +4543,8 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager
     * @return the layout mode to use during layout operations
     *
     * @see #setLayoutMode(int)
     *
     * @hide
     */
    public int getLayoutMode() {
        return mLayoutMode;
@@ -4553,6 +4559,8 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager
     * @param layoutMode the layout mode to use during layout operations
     *
     * @see #getLayoutMode()
     *
     * @hide
     */
    public void setLayoutMode(int layoutMode) {
        if (mLayoutMode != layoutMode) {