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

Commit 03b8d3a9 authored by Fabrice Di Meglio's avatar Fabrice Di Meglio
Browse files

Fix bug # 7172247 API REVIEW: android.view.ViewGroup.MarginLayoutParams

- remove isLayoutRtl() from public API

Change-Id: If700e3f5f30e3c98403b48dbcdd892535d929e2d
parent 0b171158
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -25676,7 +25676,6 @@ package android.view {
    method public int getLayoutDirection();
    method public int getMarginEnd();
    method public int getMarginStart();
    method protected boolean isLayoutRtl();
    method public boolean isMarginRelative();
    method public void setLayoutDirection(int);
    method public void setMarginEnd(int);
+4 −1
Original line number Diff line number Diff line
@@ -5893,7 +5893,10 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager
            }
        }

        protected boolean isLayoutRtl() {
        /**
         * @hide
         */
        public boolean isLayoutRtl() {
            return (layoutDirection == View.LAYOUT_DIRECTION_RTL);
        }