使用scrollview和adjustPan一起安卓

在我的清单中,我写了

 <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的大小,但它也会禁用滚动视图.

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

最佳答案 你尝试过使用过吗?

android:windowSoftInputMode=”adjustResize”

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

点赞