我正在处理一个带有 LinearLayout 和 TableLayout 的屏幕,以便显示文本、一些 EditTexts 和一些按钮。

问题是在智能手机上,当我单击布局顶部的 EditText 时,底部的按钮隐藏在软键盘后面。使按钮再次出现的唯一方法是隐藏软键盘。

是否可以将我的布局放在软键盘顶部以滚动到我的 View 按钮,以便用户可以看到软键盘和按钮底部?

我尝试在 TableLayout 周围使用 ScrollView,但它不会滚动到我的布局按钮,因此用户无法看到底部。

这是我的布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="horizontal">

        <ScrollView
            android:layout_width="fill_parent"
            android:layout_height="fill_parent">
                <LinearLayout
                    android:id="@+id/linearLayoutMain"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center_horizontal"
                    android:orientation="vertical" >

                    <include layout="@layout/login_container"/>

                    <LinearLayout
                         android:orientation="horizontal"
                         android:background="@drawable/_grey_rounded_bottom"
                         android:layout_width="match_parent"
                         android:layout_height="30dp"/>

                </LinearLayout>
        </ScrollView>
</LinearLayout>

提前致谢。

最佳答案

我有类似的观点,它为我运行。看我的代码:

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    tools:context=".MainActivity"
    android:orientation="vertical" >

    <LinearLayout ... /> <!--Have an image that I want to stay on the top -->

    <ScrollView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" ... >

        <RelativeLayout ... >
            <!-- EditText of username and EditText of password and a CheckBox -->
            <LinearLayout
                android:id="@+id/linearLayoutEntrar"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/checkBoxRecordarDatos"
                android:gravity="center"
                android:layout_marginTop="7dp"
                android:weightSum="1.0">

                <Button
                    android:id="@+id/buttonEntrar"
                    android:layout_width="0dp"
                    android:layout_height="wrap_content"
                    android:layout_weight="0.5"
                    android:text="@string/login_entrar"
                    android:textColor="@android:color/white"
                    android:textStyle="bold"
                    android:textSize="@dimen/textSize"
                    android:onClick="entrar" />

            </LinearLayout>

            <LinearLayout
                android:id="@+id/linearLayoutJugar"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/linearLayoutEntrar"
                android:layout_marginTop="7dp"
                android:gravity="center"
                android:weightSum="1.0" >

                <Button
                    android:id="@+id/buttonJugar"
                    android:layout_width="0dp"
                    android:layout_height="wrap_content"
                    android:layout_weight="0.5"
                    android:onClick="jugar"
                    android:text="@string/login_jugar"
                    android:textColor="@android:color/white"
                    android:textSize="@dimen/textSize"
                    android:textStyle="bold" />

            </LinearLayout>
        </RelativeLayout>
    </ScrollView>
</LinearLayout>

在我放置每个布局时尝试改变高度。如果不成功,我认为问题是 TableLayout ,尽量不要像我一样使用它。

关于android - 显示软键盘时垂直滚动整个 View ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17566709/

10-11 12:13