打开键盘上的Android,保持背景图像完好无损并移动内容

时间:2015-10-07 10:36:34

标签: android android-layout

我有一个布局:

<LinearLayout
xmlns:tools="http://schemas.android.com/tools"
xmlns:android.support.design="http://schemas.android.com/apk/res-auto"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/activity_background"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity">

<ImageView
    android:layout_width="30dp"
    android:layout_height="30dp"
    android:src="@drawable/ic_content_clear_login_36dp"
    />

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:overScrollMode="never"
    android:scrollbars="none"
    >

    <LinearLayout
        android:layout_width="match_parent"
        android:orientation="vertical"
        android:layout_height="match_parent">

    <!--Activity widgets: Edittext etc all come here-->

    </LinearLayout>

</ScrollView>



</LinearLayout>

当软键盘打开时,如果在清单文件中设置了LinearLayout,则根布局(android:windowSoftInputMode="stateVisible|adjustResize")中设置的背景图像会调整大小,如果在清单中设置了android:windowSoftInputMode="stateVisible|adjustPan",则会向上滚动文件。

我希望背景图片保留在原位,只让内容(根布局的子视图)向上滚动。

任何指南?

1 个答案:

答案 0 :(得分:0)

不要将Relative设置为背景,添加imageview并将其设置为背景,请执行以下操作

<ImageView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:src="@drawable/mah_kewl_background"
        android:scaleType="matrix"
        />