我有一个带有背景图像的父布局,因此在键盘弹出时添加滚动视图后,背景图像会缩小。
如下图所示:
我检查了 SO 上的所有解决方案,将 windowSofInput 添加为 adjustResize 和 adjustPan 但 adjustResize 解决了问题,并且通过使用 adjustPan 无法向上滚动页面,滚动视图与调整 pan 一起工作。
我尝试添加一些滚动视图的属性,如fillViewPort、adjustViewBounds 为true。
我也试过了,这个滚动视图不会缩小,但是我不需要全屏,全屏看不到状态栏。
我尝试添加图像视图而不是将背景图像设置为父布局,并尝试设置它的 scaleType、matrix scale 类型,但我的背景图像看起来不像原始图像。
它看起来像:
布局文件
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.admin.SmartCabFuelCard.RegisterDriver">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="matrix"
android:src="@drawable/page"/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/bg_color"
android:alpha="0.5"/>
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:adjustViewBounds = "true"
android:isScrollContainer="true"
android:fillViewport="true">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:context="com.example.admin.SmartCabFuelCard.RegisterDriver"><!--
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/page"
android:scaleType="fitXY"/>
-->
<RelativeLayout
android:id="@+id/rl"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_centerHorizontal="true"
android:layout_marginEnd="@dimen/dimen_10dp"
android:layout_marginStart="@dimen/dimen_10dp"
android:layout_marginLeft="@dimen/dimen_10dp"
android:layout_marginRight="@dimen/dimen_10dp">
<ImageView
android:id="@+id/logo"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="@dimen/dimen_20dp"
android:src="@drawable/petrolpump" />
<TextView
android:id="@+id/register_driver_welcome"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_below="@+id/logo"
android:layout_marginTop="@dimen/dimen_15dp"
android:padding="@dimen/dimen_10dp"
android:text="@string/welcome_driver"
android:textColor="@color/divider_color"
android:textStyle="bold" />
<EditText
android:id="@+id/edt_mobile"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/register_driver_welcome"
android:drawableLeft="@drawable/ic_local_phone"
android:hint="Mobile No."
android:inputType="number"
android:maxLength="10"
android:maxLines="1"
android:padding="@dimen/dimen_15dp"
android:textColor="@color/divider_color"
android:textColorHint="@color/hint_color"
android:textSize="@dimen/dimen_15dp" />
<TextView
android:id="@+id/register_driver_enter"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_below="@+id/edt_mobile"
android:padding="@dimen/dimen_10dp"
android:text="@string/otp_send"
android:textColor="@color/divider_color"
android:textStyle="bold" />
<EditText
android:id="@+id/register_driver_otp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/register_driver_enter"
android:layout_centerHorizontal="true"
android:layout_gravity="center"
android:layout_marginTop="@dimen/dimen_5dp"
android:drawableLeft="@drawable/ic_lock_close"
android:hint="OTP"
android:inputType="number"
android:maxLength="4"
android:maxLines="1"
android:padding="@dimen/dimen_15dp"
android:textColor="@color/divider_color"
android:textColorHint="@color/hint_color"
android:textSize="@dimen/dimen_15dp" />
<Button
android:id="@+id/register_driver_register"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/register_driver_otp"
android:layout_centerHorizontal="true"
android:layout_marginBottom="@dimen/dimen_20dp"
android:layout_marginTop="20dp"
android:background="@color/colorPrimary"
android:text="Register"
android:textColor="@android:color/white" />
<Button
android:id="@+id/register_driver_sendotp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/edt_mobile"
android:layout_centerHorizontal="true"
android:layout_marginBottom="@dimen/dimen_40dp"
android:layout_marginTop="20dp"
android:background="@color/colorPrimary"
android:text="Send OTP"
android:textColor="@android:color/white" />
<Button
android:id="@+id/btn_resend"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignStart="@+id/register_driver_register"
android:layout_below="@+id/register_driver_otp"
android:layout_centerHorizontal="true"
android:layout_marginBottom="@dimen/dimen_20dp"
android:layout_marginTop="20dp"
android:background="@color/colorPrimary"
android:text="RESEND OTP"
android:textColor="@android:color/white"
android:visibility="gone" />
</RelativeLayout>
</RelativeLayout>
</ScrollView>
</RelativeLayout>
任何人都可以帮我解决这个问题吗?谢谢你。