File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -22846,7 +22846,6 @@ package android.view {
2284622846 method public final android.view.View findViewWithTag(java.lang.Object);
2284722847 method public void findViewsWithText(java.util.ArrayList<android.view.View>, java.lang.CharSequence, int);
2284822848 method protected boolean fitSystemWindows(android.graphics.Rect);
22849- method public boolean fitsSystemWindows();
2285022849 method public android.view.View focusSearch(int);
2285122850 method public void forceLayout();
2285222851 method public float getAlpha();
Original file line number Diff line number Diff line change @@ -5272,6 +5272,11 @@ public boolean getFitsSystemWindows() {
52725272 return (mViewFlags & FITS_SYSTEM_WINDOWS) == FITS_SYSTEM_WINDOWS;
52735273 }
52745274
5275+ /** @hide */
5276+ public boolean fitsSystemWindows() {
5277+ return getFitsSystemWindows();
5278+ }
5279+
52755280 /**
52765281 * Ask that a new dispatch of {@link #fitSystemWindows(Rect)} be performed.
52775282 */
You can’t perform that action at this time.
0 commit comments