blob: e975a7518a06276d505710a12e4434647c281072 [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"
Alexandre Lisiond5686032013-10-29 11:09:21 -04003 android:layout_width="match_parent"
4 android:layout_height="match_parent" >
Alexandre Lision666b3772013-10-28 17:42:48 -04005
6 <ListView
7 android:id="@+id/message_list"
8 android:layout_width="match_parent"
Alexandre Lisiond5686032013-10-29 11:09:21 -04009 android:layout_height="match_parent"
Alexandre Lision666b3772013-10-28 17:42:48 -040010 android:layout_above="@+id/form"
Alexandre Lisioncafa4902013-10-29 13:17:14 -040011 android:stackFromBottom="true"
12 android:transcriptMode="alwaysScroll"
Alexandre Lisiond5686032013-10-29 11:09:21 -040013 android:background="@color/sfl_dark_blue"
Alexandre Lision666b3772013-10-28 17:42:48 -040014 android:layout_alignParentTop="true" >
15 </ListView>
16
Alexandre Lisiond5686032013-10-29 11:09:21 -040017 <LinearLayout
Alexandre Lision666b3772013-10-28 17:42:48 -040018 android:id="@+id/form"
Alexandre Lisiond5686032013-10-29 11:09:21 -040019 android:layout_width="match_parent"
Alexandre Lision666b3772013-10-28 17:42:48 -040020 android:layout_height="wrap_content"
21 android:layout_alignParentBottom="true"
Alexandre Lisiond5686032013-10-29 11:09:21 -040022 android:background="@color/darker_gray"
23 android:weightSum="4" >
Alexandre Lision666b3772013-10-28 17:42:48 -040024
25 <EditText
Alexandre Lisiond5686032013-10-29 11:09:21 -040026 android:id="@+id/send_im_edittext"
27 android:layout_width="0dp"
28 android:layout_weight="3"
Alexandre Lision666b3772013-10-28 17:42:48 -040029 android:layout_height="wrap_content"
Alexandre Lisiond5686032013-10-29 11:09:21 -040030 android:imeOptions="actionSend"
Alexandre Lision666b3772013-10-28 17:42:48 -040031 android:ems="10"
Alexandre Lisiond5686032013-10-29 11:09:21 -040032 android:inputType="textCapSentences|textImeMultiLine" />
33
34 <Button
35 android:id="@+id/send_im_button"
36 android:layout_width="0dp"
37 android:layout_weight="1"
38 android:layout_height="wrap_content"
39 android:text="Send"
40 android:background="@drawable/item_generic_selector"/>
41 </LinearLayout>
Alexandre Lision666b3772013-10-28 17:42:48 -040042
43</RelativeLayout>