我有一个片段的父ConstraintLayout,其中我使用按钮的属性在软键盘上方显示一个按钮:
app:layout_constraintBottom_toBottomOf="parent"
这很好,直到我将屏幕上任何视图的可见性状态从“不可见”或“消失”更改为“可见”,然后按钮才会消失在屏幕底部的键盘后面。
在ConstraintLayout中添加以下属性无济于事
android:fitsSystemWindows="true"
android:windowSoftInputMode="stateVisible|adjustResize"
首次打开键盘时,屏幕会适当调整大小,并且将按钮向上推。更改视图的可见性后,打开/关闭键盘没有影响,并且按钮仍位于屏幕底部和键盘后面。
xml没有什么异常。例如,这是一个精简版本,其中显示errorTextView会导致问题。
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintBottom_toTopOf="@id/errorTextView"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/errorTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility="invisible"
app:layout_constraintTop_toBottomOf="@id/editText" />
<Button
android:id="@+id/saveButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Save"
app:layout_constraintBottom_toBottomOf="parent" />
</android.support.constraint.ConstraintLayout>
任何帮助都很高兴。