Android edittext 视图在文本输入时被修剪

Android edittext view getting trimmed on text input

我有一个线性布局,在它的底部有一个 EditText。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:paddingLeft="16dp"
   android:paddingRight="16dp"
   android:orientation="vertical"
   android:gravity="center">

<LinearLayout
      xmlns:android="http://schemas.android.com/apk/res/android"
      android:layout_width="match_parent"
      android:layout_height="match_parent">
    <TextView
        android:id="@+id/text_view_id"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:text="@string/hello" />
<TextView
        android:id="@+id/title"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:text="@string/hello" />
<TextView
        android:id="@+id/description"
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:text="@string/hello" />
 </LinearLayout>

  <EditText
     android:id="@+id/plain_text_input"
     android:layout_height="wrap_content"
     android:layout_width="match_parent"
     android:inputType="text"/>
 </LinearLayout>

问题是,当我 运行 应用程序并单击 edittext 时,键盘会弹出并修剪我正在输入的内容,因此在我退出 edittext 时输入的文本在输入过程中不可见它变得可见有没有人对如何确保在我们输入数据时编辑文本视图可见并且不被键盘修剪有任何建议?

尝试在清单文件中添加以下行 Activity

android:windowSoftInputMode="adjustPan" 

as explained here

转到您的 AndroidManifest.xml 文件并在特定的 activity 中使用

`android:windowSoftInputMode="adjustResize"` 

它应该可以解决您的问题。