键盘上的Android打开,保持背景图像完整并向上移动内容[重复]

Posted

技术标签:

【中文标题】键盘上的Android打开,保持背景图像完整并向上移动内容[重复]【英文标题】:Android on keyboard open, keep background image intact and move content up [duplicate] 【发布时间】:2015-10-07 10:36:33 【问题描述】:

我有一个布局:

<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_
android:layout_
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_
    android:layout_
    android:src="@drawable/ic_content_clear_login_36dp"
    />

<ScrollView
    android:layout_
    android:layout_
    android:overScrollMode="never"
    android:scrollbars="none"
    >

    <LinearLayout
        android:layout_
        android:orientation="vertical"
        android:layout_>

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

    </LinearLayout>

</ScrollView>



</LinearLayout>

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

我希望背景图像保留在其位置,并且只使内容(根布局的子视图)向上滚动。

有什么指南吗?

【问题讨论】:

【参考方案1】:

不要将Relative设置为背景,添加imageview并将其设置为背景,如下所示

<ImageView
        android:layout_
        android:layout_
        android:src="@drawable/mah_kewl_background"
        android:scaleType="matrix"
        />

【讨论】:

以上是关于键盘上的Android打开,保持背景图像完整并向上移动内容[重复]的主要内容,如果未能解决你的问题,请参考以下文章

出现软键盘时工具栏向上移动

iPhone:滚动网页视图时需要保持键盘向上吗?

在android中打开键盘时设置滚动屏幕向上移动

防止背景调整大小并防止自动关注活动开始

如何防止在android中打开键盘时反应本机模式向上移动?

(Android) 如何填充ListView背景并保持标题透明度