Add logging to try and track down bug 7643792
Fix whitespace & log message. Change-Id: I9d241365503a6a9b02d3155dbb06ddb82065b375
This commit is contained in:
committed by
The Android Automerger
parent
b36ed85c40
commit
77f3541731
@@ -24,6 +24,7 @@ import android.content.pm.ActivityInfo;
|
||||
import android.content.res.Configuration;
|
||||
import android.content.res.Resources;
|
||||
import android.graphics.PixelFormat;
|
||||
import android.graphics.Rect;
|
||||
import android.os.Bundle;
|
||||
import android.os.IBinder;
|
||||
import android.os.Parcelable;
|
||||
@@ -126,6 +127,12 @@ public class KeyguardViewManager {
|
||||
setFitsSystemWindows(true);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected boolean fitSystemWindows(Rect insets) {
|
||||
Log.v("TAG", "bug 7643792: fitSystemWindows(" + insets.toShortString() + ")");
|
||||
return super.fitSystemWindows(insets);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void onConfigurationChanged(Configuration newConfig) {
|
||||
super.onConfigurationChanged(newConfig);
|
||||
|
||||
Reference in New Issue
Block a user