安卓:ScrollView不使用键盘滚动

我有一个带有一些视图的布局,其中一个是EditText。布局很容易适应一个页面,但是,当软键盘出来时,布局不会滚动。以下是我的布局回顾:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/background" >

    <ScrollView
        android:id="@+id/ScrollView1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true" >

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

            <CheckBox/>

            <TextView/>

            <LinearLayout>
                <EditText>
                    <requestFocus />
                </EditText>
            </LinearLayout>

            <TextView/>

            <LinearLayout>
                <Spinner/>
            </LinearLayout>

        </LinearLayout>

    </ScrollView>

    <Button
        android:layout_alignParentBottom="true" />

</RelativeLayout>

在我的清单中,我声明了属性:

android:windowSoftInputMode="adjustResize|stateHidden"

有谁知道为什么它不起作用以及如何确保它确实有效?

提前致谢!


答案 1

我遇到了同样的问题,我在清单中检查了我的活动,它不起作用的原因是因为我没有使用此属性:

android:windowSoftInputMode="adjustResize"

现在它工作得很好,不需要做额外的锚点。


答案 2

好吧,显然ScrollView的不能设置为。我将其设置为页面底部的按钮并将其设置为。android:layout_heightwrap_contentmatch_parentandroid:layout_above

不要问我为什么,但这解决了问题。


推荐