我在我的应用中有一个edittext。我正在使用 adjustPan 在键盘打开时相应地移动布局。但是当键盘打开时,它确实会移动布局,但它仍然会切割编辑文本并且不会完全移动。我还尝试添加布局到scrollview并添加填充底部,但它没有帮助。我也试过 adjustResize ,但这也没有奏效。 这是两种情况的屏幕截图
这是清单文件(仅此活动
<activity android:name=".activity.ActivityRegister"
android:windowSoftInputMode="adjustResize|adjustPan"/>
布局文件
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bg">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="50dp"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.socialninjaz.doorstep.MainActivity"
android:orientation="vertical">
<ImageView
android:layout_width="200dp"
android:layout_height="200dp"
android:layout_gravity="center"
android:layout_marginTop="100dp"
android:src="@drawable/logo"/>
<EditText
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="40dp"
android:background="@drawable/rounded_rectangle"
android:hint="Enter Your Phone Number"
android:paddingLeft="10dp"
android:textColorHint="#D92027"
android:textSize="18sp"
android:id="@+id/et_phone_number"
android:inputType="phone"
android:maxLength="10"/>
<Button
android:layout_width="200dp"
android:layout_height="wrap_content"
android:layout_marginTop="25dp"
android:layout_gravity="center"
android:text="register"
android:padding="10dp"
android:textColor="#D92027"
android:background="@drawable/rounded_rectangle"
android:textSize="16sp"
android:id="@+id/btn_register"/>
</LinearLayout>
</ScrollView>