Skip to content

Commit e431e6a

Browse files
Jim MillerAndroid (Google) Code Review
authored andcommitted
Merge "Add logging to try and track down bug 7643792" into jb-mr1.1-dev
2 parents 0a40f2d + 2b84b81 commit e431e6a

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

policy/src/com/android/internal/policy/impl/keyguard/KeyguardViewManager.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
import android.content.res.Configuration;
2525
import android.content.res.Resources;
2626
import android.graphics.PixelFormat;
27+
import android.graphics.Rect;
2728
import android.os.Bundle;
2829
import android.os.IBinder;
2930
import android.os.Parcelable;
@@ -126,6 +127,12 @@ public ViewManagerHost(Context context) {
126127
setFitsSystemWindows(true);
127128
}
128129

130+
@Override
131+
protected boolean fitSystemWindows(Rect insets) {
132+
Log.v("TAG", "bug 7643792: fitSystemWindows(" + insets.toShortString() + ")");
133+
return super.fitSystemWindows(insets);
134+
}
135+
129136
@Override
130137
protected void onConfigurationChanged(Configuration newConfig) {
131138
super.onConfigurationChanged(newConfig);

0 commit comments

Comments
 (0)