Android键盘重叠 - 真正的解决方案

时间:2013-06-10 09:31:51

标签: android android-softkeyboard

我已经制作了数百种布局,但是当出现这种情况时,Android键盘总是与编辑文本或下面的按钮重叠。每次我使用一些技巧和技巧来解决它,但我从来没有找到真正的专用解决方案。

在这里,我希望当Android键盘出现时,我希望我的按钮也应该位于键盘上方,但这里重叠。

请帮忙

<?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:orientation="vertical" >

    <RelativeLayout
        android:id="@+id/relativeLayout1"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_alignParentTop="true"
        android:background="#FFBB3A"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/tv_registered_text"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_centerVertical="true"
            android:layout_toLeftOf="@+id/imageView1"
            android:gravity="center_vertical|center_horizontal"
            android:text="Registered and Guest Account"
            android:textSize="20dp"
            android:textStyle="bold" />

        <ImageView
            android:id="@+id/imageView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentRight="true"
            android:layout_centerVertical="true"
            android:layout_marginRight="10dp"
            android:src="@drawable/unselected" />
    </RelativeLayout>

    <ScrollView
        android:id="@+id/scroll"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/relativeLayout1"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="105dp" >

        <RelativeLayout
            android:id="@+id/relativeLayout2"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
             >

            <EditText
                android:id="@+id/editText1"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_alignParentLeft="true"
                android:layout_alignParentTop="true" >
            </EditText>

            <Button
                android:id="@+id/button1"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/editText1"
                android:layout_alignParentBottom="true"
                android:text="Button" />
        </RelativeLayout>
    </ScrollView>

</RelativeLayout>

1 个答案:

答案 0 :(得分:0)

在您的活动下的清单文件中包含

机器人:windowSoftInputMode = “adjustResize”

这样您的内容就会自动调整而不会重叠。