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

Commit 8af2a13d authored by Fabrice Di Meglio's avatar Fabrice Di Meglio Committed by Android (Google) Code Review
Browse files

Merge "Fix bug # 7172247 API REVIEW: android.view.ViewGroup.MarginLayoutParams" into jb-mr1-dev

parents 669aa7cb 03b8d3a9
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -25679,7 +25679,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
@@ -5904,7 +5904,10 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager
            }
        }

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