We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 669aa7c + 03b8d3a commit 8af2a13Copy full SHA for 8af2a13
2 files changed
api/current.txt
@@ -25679,7 +25679,6 @@ package android.view {
25679
method public int getLayoutDirection();
25680
method public int getMarginEnd();
25681
method public int getMarginStart();
25682
- method protected boolean isLayoutRtl();
25683
method public boolean isMarginRelative();
25684
method public void setLayoutDirection(int);
25685
method public void setMarginEnd(int);
core/java/android/view/ViewGroup.java
@@ -5904,7 +5904,10 @@ public void onResolveLayoutDirection(int layoutDirection) {
5904
}
5905
5906
5907
- protected boolean isLayoutRtl() {
+ /**
5908
+ * @hide
5909
+ */
5910
+ public boolean isLayoutRtl() {
5911
return (layoutDirection == View.LAYOUT_DIRECTION_RTL);
5912
5913
0 commit comments