安卓:滚动型不能与键盘卷出(Android: ScrollView not scrolling wi

2019-07-21 08:38发布

我有一些意见,从其中一个是一个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"

有谁知道为什么它不工作,如何确保它的工作?

提前致谢!

Answer 1:

我有同样的问题,我查了一下我的活动清单,为什么它不工作的原因是因为我没有使用这个属性:

android:windowSoftInputMode="adjustResize"

现在,它的伟大工程,没有必要做额外的锚。



Answer 2:

好吧,显然是滚动型的android:layout_height不能设置为wrap_content 。 我将它设置为match_parent并设置android:layout_above的按钮在页面的底部。

不要问我为什么,但这个固定的问题。



Answer 3:

就我而言,没有上述的工作。

我不得不item name="android:windowTranslucentStatus">true</item>在我的主题。 而且它是固定设置android:fitsSystemWindows="true"在哪里是我的滚动视图父布局。



Answer 4:

添加android:windowSoftInputMode="stateHidden|adjustResize"在AndroidManifest.xml文件的标记。 这将导致显示的软键盘后,屏幕将被调整到遗留下来的空间。 所以,你将能够轻松地滚动。



Answer 5:

My problem was with a HorizontalScrollView. In my case I had to set HorizontalScrollView to:

android:layout_width="match_parent"
android:layout_height="match_parent"

And remove:

 android:layout_above="@+id/closeButton"
 android:layout_below="@+id/logo"

In the AndroidManifest.xml the activity is set to:

android:windowSoftInputMode=""

I hope this helps anyone comming across this weird bug.



Answer 6:

尝试设置滚动型为你的父母布局。 它的工作原理般的魅力对我来说!



Answer 7:

<activity 
    android:windowSoftInputMode="adjustResize"
>

试试这个在Android清单 ..



文章来源: Android: ScrollView not scrolling with keyboard out