使用scrollview和adjustPan一起安卓

时间:2011-07-29 03:42:10

标签: android android-manifest

在我的清单中,我写了

 <activity android:name=".email" 
           android:label="@string/app_name"
           android:theme="@android:style/Theme.NoTitleBar"
           android:windowSoftInputMode="adjustPan">         
 </activity>

在我的布局中,我写了

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/white" >

<ImageView
    android:id="@+id/bottomImage"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:background="@drawable/ic_backdrop_wave" />

<ScrollView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dip"
    android:isScrollContainer="false" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <EditText>
        </EditText>

        <EditText>
        </EditText>

        <EditText>
        </EditText>
    </LinearLayout>
</ScrollView>

因此,当我点击任何编辑文本时,它不会重新调整imageview的大小,但它也会禁用滚动视图。

现在我需要做什么才能出来,我想要这样的布局,其中图像视图的高度不会改变,并且当任何软键盘打开时它将坚持对齐父底部,并且在软键盘时启用滚动视图是开放的。

2 个答案:

答案 0 :(得分:2)

你尝试过使用

吗?
  

机器人:windowSoftInputMode = “adjustResize”

这不会调整图像视图的大小,而是在键盘弹出时自动调整屏幕

答案 1 :(得分:0)

这是解决方案。

确保您的图像位于ScrollView内的单个子对象内,像这样对齐。

<ScrollView
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintBottom_toBottomOf="parent"
        android:layout_width="match_parent"
        android:fillViewport="true"
        android:isScrollContainer="true"
        android:layout_height="0dp">

        <androidx.constraintlayout.widget.ConstraintLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
          ....

          ....

           <androidx.appcompat.widget.AppCompatImageView
                android:id="@+id/bottom_illustration"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:scaleType="centerCrop"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toBottomOf="@+id/some_text_view"
                app:layout_constraintVertical_bias="1.0"
                app:srcCompat="@drawable/login_illustration" />

       </androidx.constraintlayout.widget.ConstraintLayout>

 </ScrollView>

将以下属性添加到 ScrollView

android:fillViewport="true"
android:isScrollContainer="true"

将此添加到 AndroidManifest.xml

中的活动标签下
android:windowSoftInputMode="adjustResize"