Merge "Process insets correctly" into qt-dev

This commit is contained in:
TreeHugger Robot
2019-05-14 05:01:26 +00:00
committed by Android (Google) Code Review
2 changed files with 7 additions and 12 deletions

View File

@@ -38,6 +38,7 @@
android:clipChildren="false"
android:clipToPadding="false"
android:padding="0dp"
android:fitsSystemWindows="true"
android:layout_gravity="center">
<com.android.keyguard.KeyguardSecurityViewFlipper
android:id="@+id/view_flipper"

View File

@@ -20,6 +20,7 @@ import android.app.AlertDialog;
import android.app.admin.DevicePolicyManager;
import android.content.Context;
import android.content.res.ColorStateList;
import android.graphics.Rect;
import android.metrics.LogMaker;
import android.os.UserHandle;
import android.util.AttributeSet;
@@ -139,7 +140,6 @@ public class KeyguardSecurityContainer extends FrameLayout implements KeyguardSe
getSecurityView(mCurrentSecuritySelection).onResume(reason);
}
updateBiometricRetry();
updatePaddings();
}
@Override
@@ -319,17 +319,11 @@ public class KeyguardSecurityContainer extends FrameLayout implements KeyguardSe
}
@Override
protected void onAttachedToWindow() {
super.onAttachedToWindow();
updatePaddings();
}
private void updatePaddings() {
int bottomPadding = getRootWindowInsets().getSystemWindowInsets().bottom;
if (getPaddingBottom() == bottomPadding) {
return;
}
setPadding(getPaddingLeft(), getPaddingTop(), getPaddingRight(), bottomPadding);
protected boolean fitSystemWindows(Rect insets) {
// Consume bottom insets because we're setting the padding locally (for IME and navbar.)
setPadding(getPaddingLeft(), getPaddingTop(), getPaddingRight(), insets.bottom);
insets.bottom = 0;
return false;
}
private void showDialog(String title, String message) {