当我在edittext里面输入时,让Android Linear Layout Vertical展开

时间:2016-02-06 23:34:12

标签: android android-layout android-edittext android-linearlayout

我在屏幕底部的线性布局中有一个eddittext,有点像WhatsApp来编写消息。我可以在编辑中添加新行,但线性布局保持完全相同,我希望线性布局在我输入更多行时展开。我在线性布局上方有一个列表视图

这是我的布局XML:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".ChatActivity"
android:background="#ffffff">


<ListView
    android:id="@+id/listView"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_above="@+id/linlay"
    android:divider="@android:color/transparent"
    android:dividerHeight="0dp"/>




    <LinearLayout
        android:orientation="horizontal"
        android:id="linlay"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/et_message"
            android:hint="Enter your message" />

//我希望在编辑垂直展开时展开这个Lin布局

    </LinearLayout>


<com.gc.materialdesign.views.ButtonFloat
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/btn_send"
    android:layout_alignTop="@+id/chatMessageView"
    android:layout_alignParentRight="true"
    android:layout_alignParentEnd="true"
    android:layout_marginRight="5dp"
    app:iconDrawable="@drawable/ic_action_send_now"
    android:background="@color/ChatBlue10" />


</RelativeLayout>

2 个答案:

答案 0 :(得分:0)

你可以使用minheight,

#container{
    height:100%;
    width:100%;
}
#row1{
    min-height:30px;
    height:10%;
}
#row2{
    height:90%;
}

否则你可以向我们展示你的xml以及更多你的问题

答案 1 :(得分:-1)

为了更好地回答您的问题,了解您在layout.xml中使用的所有元素非常重要。请把你所有的xml布局文件。