blob: ab750249f8f8bd4f2376c1250456a8f8768b4af4 [file] [log] [blame]
Alexandre Lision666b3772013-10-28 17:42:48 -04001<?xml version="1.0" encoding="utf-8"?>
2<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="fill_parent"
4 android:layout_height="fill_parent"
5 android:orientation="vertical" >
6
7 <ListView
8 android:id="@+id/message_list"
9 android:layout_width="match_parent"
10 android:layout_height="wrap_content"
11 android:layout_above="@+id/form"
12 android:layout_alignParentTop="true" >
13 </ListView>
14
15 <RelativeLayout
16 android:id="@+id/form"
17 android:layout_width="fill_parent"
18 android:layout_height="wrap_content"
19 android:layout_alignParentBottom="true"
20 android:layout_alignParentLeft="true"
21 android:orientation="vertical" >
22
23 <EditText
24 android:id="@+id/editText1"
25 android:layout_width="wrap_content"
26 android:layout_height="wrap_content"
27 android:layout_alignParentLeft="true"
28 android:layout_alignParentRight="true"
29 android:ems="10"
30 android:inputType="text" />
31 </RelativeLayout>
32
33</RelativeLayout>