我有一个约束布局,其中包含一个EditText。在此EditText下有一个TextView。当我选择EditText时,将弹出一个键盘。太好了但是EditText下面的textView隐藏在键盘下面。如何在我下面显示TextView EditText。我已经尝试过
android:windowSoftInputMode="adjustResize"
and
android:windowSoftInputMode="adjustPan"
但是没有任何帮助。 Textview仍隐藏在键盘后面。
这是我的布局快照
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
android:background="@color/white"
android:orientation="vertical"
tools:ignore="MissingPrefix">
<include layout="@layout/toolbar" />
//other components
<EditText
android:id="@+id/registration_year"
android:layout_width="80dp"
android:layout_height="40dp"
android:layout_marginTop="14dp"
android:paddingStart="12dp"
android:paddingEnd="12dp"
android:inputType="number"
android:lineSpacingExtra="10sp"
android:maxLength="4"
android:gravity="center_vertical"
android:maxLines="1"
android:textSize="14sp"
android:textColor="@color/black"
android:background="@drawable/details_number_background_selector" />
<TextView
android:id="@+id/date_format_info"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:lineSpacingExtra="10sp"
android:text="@string/details_year_format_text"
android:textColor="#666666"
android:textSize="14sp"/>
</LinearLayout>