显示软键盘时,在整个视图中垂直滚动

我正在使用一个带有TableLayout的LinearLayout的屏幕,以显示文本,一些EditText和一些按钮。

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

在这里输入图像描述

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

我试图在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:windowSoftInputMode="stateVisible|adjustPan"到您的活动标记中应该可以完成工作。


  • 尝试android:windowSoftInputMode =“adjustResize”
  • 如果scrollView具有兄弟视图元素,请在ScrollView上尝试此操作

    android:layout_width =“match_parent”android:layout_height =“0dp”android:layout_weight =“1”

  • 链接地址: http://www.djcxy.com/p/93039.html

    上一篇: Scroll vertically through the whole view when the soft keyboard is shown

    下一篇: Show keyboard automatically