使键盘不向上推视图

时间:2015-03-27 12:15:24

标签: android android-layout

因为图片胜过千言万语:

enter image description here

所以我希望我的第一个LinearLayout像操作栏一样,而不是被键盘推高。我尝试了android:isScrollContainer="false"并添加了清单"adjustPan""adjustResize",但我没有得到我想要的内容。

这是我的XML:

<!-- layout 1 -->
<LinearLayout
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/caller_info"
    android:layout_alignParentTop="true"
    android:isScrollContainer="false"
    android:layout_marginTop="@dimen/last_message_margin">
        <TextView android:text="@string/hello_world" android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/txt_caller_name"
            android:textAppearance="?android:attr/textAppearanceMedium"
            android:layout_marginLeft="@dimen/side_margins"
            android:layout_marginStart="@dimen/side_margins"/>
</LinearLayout>


<!-- layout 2 -->
<LinearLayout
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/dialog"
    android:layout_below="@+id/caller_info"
    android:layout_above="@+id/write_msg_layout">
</LinearLayout>


<!-- layout 3 with edit text -->
<LinearLayout
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:id="@+id/write_msg_layout">

    <EditText
        android:layout_marginBottom="30dp"
        android:layout_marginTop="10dp"
        android:layout_marginLeft="@dimen/side_margins"
        android:layout_marginStart="@dimen/side_margins"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/edit_text"
        android:hint="Write Msg"
        android:textColorHint="@color/grey_as_clouds"
        android:background="@color/white_as_stone"
        android:imeOptions="actionSend"
        android:singleLine="true" />
</LinearLayout>

1 个答案:

答案 0 :(得分:0)

终于明白了。您必须使用ScrollView环绕视图并使用adjustResize

并删除android:isScrollContainer="false"