1<?xml version="1.0" encoding="utf-8"?>
2<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 xmlns:tools="http://schemas.android.com/tools"
4 android:layout_width="match_parent"
5 android:layout_height="match_parent"
6 android:background="#e5e5e5" >
7
8 <RelativeLayout
9 android:background="#eee"
10 android:id="@+id/textsend"
11 android:layout_width="fill_parent"
12 android:layout_height="wrap_content"
13 android:layout_alignParentBottom="true"
14 android:layout_alignParentLeft="true" >
15
16 <EditText
17 android:id="@+id/textinput"
18 android:layout_width="wrap_content"
19 android:layout_height="wrap_content"
20 android:minHeight="48dp"
21 android:layout_alignParentLeft="true"
22 android:paddingBottom="12dp"
23 android:paddingLeft="8dp"
24 android:paddingRight="8dp"
25 android:paddingTop="12dp"
26 android:layout_toLeftOf="@+id/textSendButton"
27 android:background="#eee"
28 android:ems="10"
29 android:inputType="textMultiLine"
30 android:minLines="1" >
31 </EditText>
32
33 <ImageButton
34 android:id="@+id/textSendButton"
35 android:layout_width="48dp"
36 android:layout_height="48dp"
37 android:layout_alignParentRight="true"
38 android:layout_centerVertical="true"
39 android:background="?android:selectableItemBackground"
40 android:src="@drawable/ic_action_send_now" />
41 </RelativeLayout>
42
43 <ListView
44 android:id="@+id/messages_view"
45 android:layout_width="fill_parent"
46 android:layout_height="wrap_content"
47 android:layout_above="@+id/textsend"
48 android:layout_alignParentLeft="true"
49 android:background="#e5e5e5"
50 tools:listitem="@layout/message_sent"
51 android:divider="@null"
52 android:dividerHeight="0dp">
53 </ListView>
54
55</RelativeLayout>