Fix the keyboard shows up problem

- Fix the keyboard shows overlapped problem in ChooseLockPassword.

Fixes: 331179831
Test: atest PlatformScenarioTests:LockscreenWithSixDigitPIN
Change-Id: Id57a3d1d693fb12d370fbf7e8e95b6da5dbf7df3
diff --git a/src/com/android/settings/Utils.java b/src/com/android/settings/Utils.java
index b44d3c7..6a20d75 100644
--- a/src/com/android/settings/Utils.java
+++ b/src/com/android/settings/Utils.java
@@ -1389,7 +1389,8 @@
             ViewCompat.setOnApplyWindowInsetsListener(activity.findViewById(android.R.id.content),
                     (v, windowInsets) -> {
                         Insets insets = windowInsets.getInsets(
-                                WindowInsetsCompat.Type.systemBars());
+                                WindowInsetsCompat.Type.systemBars()
+                                        | WindowInsetsCompat.Type.ime());
                         // Apply the insets paddings to the view.
                         v.setPadding(insets.left, insets.top, insets.right, insets.bottom);