Skip to content

Commit b1b55e6

Browse files
author
Dianne Hackborn
committed
Fix build.
Change-Id: Ie255c93442d0b62032ac25e6de97f2c03e5df3ba
1 parent f54bfcf commit b1b55e6

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

api/16.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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();

core/java/android/view/View.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff 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
*/

0 commit comments

Comments
 (0)