สำหรับผู้ที่ใช้ConstraintLayout , android:windowSoftInputMode="adjustPan|adjustResize"
จะไม่ทำงาน
สิ่งที่คุณสามารถทำได้คือใช้ผู้ฟังแป้นพิมพ์อ่อนตั้งข้อ จำกัด ของมุมมองจากด้านล่างถึงด้านล่างของมุมมองด้านบนจากนั้นตั้งค่าความเอนเอียงแนวตั้งสำหรับแต่ละมุมมอง (เป็นเปอร์เซ็นต์ตำแหน่งระหว่างข้อ จำกัด ) เป็นแนวนอน แต่ให้ผู้ปกครอง)
สำหรับแต่ละมุมมองเราต้องเปลี่ยนapp:layout_constraintBottom_toBottomOf
เป็น@+id/guideline
เมื่อมีการแสดงแป้นพิมพ์โดยทางโปรแกรม
<ImageView
android:id="@+id/loginLogo"
...
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.15" />
<RelativeLayout
android:id="@+id/loginFields"
...
app:layout_constraintVertical_bias=".15"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@+id/loginLogo">
<Button
android:id="@+id/login_btn"
...
app:layout_constraintVertical_bias=".25"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@+id/loginFields"/>
โดยทั่วไปแล้วคีย์บอร์ดนุ่มจะใช้ความสูงไม่เกิน 50% ของหน้าจอ ดังนั้นคุณสามารถกำหนดแนวทางที่ 0.5
<android.support.constraint.Guideline
android:id="@+id/guideline"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layout_constraintGuide_percent="0.5"/>
ตอนนี้โดยทางโปรแกรมเมื่อไม่แสดงแป้นพิมพ์เราสามารถตั้งค่าทั้งหมดapp:layout_constraintBottom_toBottomOf
กลับไปที่ผู้ปกครองในทางกลับกัน
unregistrar = KeyboardVisibilityEvent.registerEventListener(this, isOpen -> {
loginLayout.startAnimation(AnimationManager.getFade(200));
if (isOpen) {
setSoftKeyViewParams(loginLogo, R.id.guideline, ConstraintLayout.LayoutParams.PARENT_ID, -1, "235:64", 0.15f,
63, 0, 63, 0);
setSoftKeyViewParams(loginFields, R.id.guideline, -1, R.id.loginLogo, null, 0.15f,
32, 0, 32, 0);
setSoftKeyViewParams(loginBtn, R.id.guideline, -1, R.id.useFingerPrintIdText, null, 0.5f,
32, 0, 32, 0);
} else {
setSoftKeyViewParams(loginLogo, ConstraintLayout.LayoutParams.PARENT_ID, ConstraintLayout.LayoutParams.PARENT_ID, -1, "235:64", 0.15f,
63, 0, 63, 0);
setSoftKeyViewParams(loginFields, ConstraintLayout.LayoutParams.PARENT_ID, -1, R.id.loginLogo,null, 0.15f,
32, 0, 32, 0);
setSoftKeyViewParams(loginBtn, ConstraintLayout.LayoutParams.PARENT_ID, -1, R.id.useFingerPrintIdText,null, 0.25f,
32, 0, 32, 0);
}
});
เรียกวิธีนี้:
private void setSoftKeyViewParams(View view, int bottomToBottom, int topToTop, int topToBottom, String ratio, float verticalBias,
int left, int top, int right, int bottom) {
ConstraintLayout.LayoutParams viewParams = new ConstraintLayout.LayoutParams(view.getLayoutParams().width, view.getLayoutParams().height);
viewParams.dimensionRatio = ratio;
viewParams.bottomToBottom = bottomToBottom;
viewParams.topToTop = topToTop;
viewParams.topToBottom = topToBottom;
viewParams.endToEnd = ConstraintLayout.LayoutParams.PARENT_ID;
viewParams.startToStart = ConstraintLayout.LayoutParams.PARENT_ID;
viewParams.verticalBias = verticalBias;
viewParams.setMargins(Dimensions.dpToPx(left), Dimensions.dpToPx(top), Dimensions.dpToPx(right), Dimensions.dpToPx(bottom));
view.setLayoutParams(viewParams);
}
สิ่งสำคัญคือต้องแน่ใจว่าตั้งค่าความเอนเอียงแนวตั้งด้วยวิธีที่จะปรับขนาดได้อย่างถูกต้องเมื่อมีการแสดงแป้นพิมพ์และไม่แสดง
Theme.AppCompat.Light.NoActionBar.FullScreen
) ตามคำตอบนี้ -> stackoverflow.com/a/7509285/1307690