用软键盘推动线性布局

时间:2016-06-20 14:05:06

标签: android android-activity android-linearlayout android-softkeyboard

嗨我有一个xml布局,其中我在父布局的底部有两个按钮。这里只要软键盘打开,这些按钮就会被隐藏,因此我需要用键盘按下上面的按钮。我在这里发布了我的xml布局,请参考它并帮助我实现这一目标。

  <?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="wrap_content"
    android:isScrollContainer="false">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/view1"
        android:orientation="horizontal">

        <RelativeLayout
            android:id="@+id/leftPane"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="3">

            <ListView
                android:id="@+id/Left_listView"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:background="#0A2F41"
                android:duplicateParentState="true"
                android:fadingEdge="vertical"
                android:gravity="center"
                android:listSelector="#335E73"
                android:scrollbars="none"
                android:smoothScrollbar="true"
                android:soundEffectsEnabled="true" />
        </RelativeLayout>

        <RelativeLayout
            android:id="@+id/rightPane"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="5">

            <EditText
                android:id="@+id/searchkeyword_editText"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:drawableRight="@drawable/icon_close"
                android:hint="Search"
                android:inputType="textNoSuggestions"
                android:maxLines="1"
                android:paddingRight="10dp" />

            <ListView
                android:id="@+id/right_listView"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_below="@id/searchkeyword_editText"
                android:fadingEdge="vertical"
                android:gravity="center"
                android:scrollbars="none"
                android:smoothScrollbar="true"
                android:soundEffectsEnabled="true" />
        </RelativeLayout>
    </LinearLayout>

    <View
        android:id="@+id/view1"
        android:layout_width="match_parent"
        android:layout_height="0.5dp"
        android:layout_above="@+id/bottom_linearLayout"
        android:background="#000"
        android:visibility="visible" />

    <LinearLayout
        android:id="@+id/bottom_linearLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:orientation="horizontal"
        android:visibility="visible">

        <TextView
            android:id="@+id/cancel_textView"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:gravity="center"
            android:padding="12dp"
            android:text="Cancel"
            android:textSize="15sp" />

        <View
            android:layout_width="0.5dp"
            android:layout_height="match_parent"
            android:background="#000" />

        <TextView
            android:id="@+id/apply_textView"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:background="#02B5CC"
            android:gravity="center"
            android:padding="12dp"
            android:text="Apply"
            android:textColor="#fff"
            android:textSize="15sp"
            android:visibility="visible" />

    </LinearLayout>
</RelativeLayout>

同样在我的Manifest中,我添加了以下行以实现上述操作。

android:windowSoftInputMode="stateVisible|adjustResize"

我想要this之类的东西。

1 个答案:

答案 0 :(得分:0)

试试这个:

<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
    <S:Body>
        <ns2:hello xmlns:ns2="http://webservices/">
            <name>John</name>
        </ns2:hello>
    </S:Body>
</S:Envelope>