我想在显示键盘时调整大小或平移布局。
这是我的源代码。
activity_forget_password.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/forgot_password_bg"
android:scaleType="fitXY"
android:largeHeap="true"/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="15dp">
<com.opkix.app.utils.OpenSassTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/forget_password_introduce_string"
android:layout_alignParentBottom="true"
android:textColor="@android:color/white"
android:textSize="12sp"/>
</RelativeLayout>
</RelativeLayout>
manifest.xml
<activity android:name=".activities.auth.ForgetPasswordActivity"
android:windowSoftInputMode="adjustPan"
android:noHistory="true">
从源代码中可以看到,我添加了fitsSystemWindows和windowSoftInputMode。
谁能帮帮我吗?
最佳答案
将ScrollView添加为RelativeLayout的父级。这不是正确的答案,但可以使用。
例
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/forgot_password_bg"
android:scaleType="fitXY"
android:largeHeap="true"/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="15dp">
<com.opkix.app.utils.OpenSassTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/forget_password_introduce_string"
android:layout_alignParentBottom="true"
android:textColor="@android:color/white"
android:textSize="12sp"/>
</RelativeLayout>
</RelativeLayout>
</ScrollView>
</RelativeLayout>
关于java - 当Android Java中显示软键盘时,布局无法上移或平移,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41828299/