0

我试图让下面的 ScrollView 缩小,以便在使用 IME 时,它上面的所有其他元素仍然可见,或者至少,让 ScrollView 的顶部向下移动到屏幕。

主要.xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content" android:layout_height="match_parent"
    android:orientation="vertical" android:id="@+id/gameLayout">

    <TextView android:id="@+id/gameTitle" android:layout_width="fill_parent"
        android:layout_height="wrap_content" android:textColor="@color/Red"
        android:maxLines="1" />

    <ScrollView android:id="@+id/gameScroll"
        android:layout_width="match_parent" android:layout_height="fill_parent"
        android:fillViewport="false" android:layout_above="@+id/gameEntry"
        android:layout_below="@+id/gameTitle">

        <TextView android:id="@+id/gameText" android:layout_width="match_parent"
            android:layout_height="wrap_content" android:scrollbars="vertical" />

    </ScrollView>

    <AutoCompleteTextView android:id="@+id/gameEntry"
        android:layout_width="wrap_content" android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true" android:layout_toLeftOf="@+id/gameSubmit"
        android:hint="@string/Hint" android:imeOptions="actionDone"
        android:lines="1" />


    <TextView android:id="@+id/gameSubmit" android:layout_width="wrap_content"
        android:layout_height="wrap_content" android:layout_alignBaseline="@+id/gameEntry"
        android:layout_alignParentRight="true" android:gravity="center"
        android:text="@string/Submit" android:textColor="@color/Red"
        android:textSize="18dp" android:lines="1" />

</RelativeLayout>

这可以做到吗?我可能犯了一些愚蠢的错误......哦,我做了他们关于如何防止键盘隐藏我的 EditText 的所有建议?

而且,我还添加android:windowSoftInputMode="adjustResize"到清单中,它仍在平移...提示 3..2..1 中的“哇,这是一个愚蠢的问题”......

4

1 回答 1

0

尝试将 更改为android:layout_height="fill_parent"并添加ScrollView到.android:layout_height="wrap_content"android:layout_above="@+id/gameEntry"ScrollView

于 2012-04-19T21:02:52.980 回答