在我的 Android 活动中,我有一个 EditText,前后都有其他布局。 当我单击 EditText 时,软键盘打开,视图滚动到足以让我看到光标。
这似乎是默认行为。
但我希望 EditText 完全可见(我周围有边框)。
我该怎么做?
我当前的代码:
manifest.xml:
<activity
android:name=".MainActivity"
android:windowSoftInputMode="adjustPan"
...
布局:
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<LinearLayout
android:id="@+id/linear1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:minHeight="300dp"
android:background="#bbbbbb"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<androidx.appcompat.widget.AppCompatEditText
android:id="@+id/notes"
android:layout_height="wrap_content"
android:layout_width="match_parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/linear1"
android:background="@drawable/border"
android:layout_margin="8dp"
android:imeOptions="actionDone"
android:minLines="10"
android:inputType="textMultiLine"
android:selectAllOnFocus="true"/>
<LinearLayout
android:id="@+id/linear2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:orientation="vertical"
android:minHeight="50dp"
android:background="#bbbbbb"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/notes"/>
</androidx.constraintlayout.widget.ConstraintLayout>
关闭键盘:
打开键盘(当前行为):EditText 被截断
预期行为:
在manifest.xml中将您的活动窗口SoftInput模式设置为调整大小
<activity
android:name=".MainActivity"
android:windowSoftInputMode="adjustResize">
然后用滚动视图包裹你的内容
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
更新:这对我有用
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/linear1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:minHeight="300dp"
android:background="#bbbbbb"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<androidx.appcompat.widget.AppCompatEditText
android:id="@+id/notes"
android:layout_height="wrap_content"
android:layout_width="match_parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/linear1"
android:background="@drawable/border"
android:layout_margin="8dp"
android:imeOptions="actionDone"
android:minLines="10"
android:inputType="textMultiLine"
android:selectAllOnFocus="true" />
<LinearLayout
android:id="@+id/linear2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:orientation="vertical"
android:minHeight="50dp"
android:background="#bbbbbb"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@id/notes" />
</ScrollView>
</androidx.constraintlayout.widget.ConstraintLayout>