author | Philippe Lago <lago_p@epitech.net> |
Mon, 23 Mar 2009 15:23:36 +0100 | |
changeset 26 | 45de80223558 |
parent 25 | 1e044613960c |
child 43 | 4e7c6918b092 |
permissions | -rw-r--r-- |
26
45de80223558
Activité envoi de messages instantanés
Philippe Lago <lago_p@epitech.net>
parents:
25
diff
changeset
|
1 |
<?xml version="1.0" encoding="utf-8"?> |
25 | 2 |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
3 |
android:orientation="vertical" |
|
4 |
android:layout_width="fill_parent" |
|
5 |
android:layout_height="fill_parent" |
|
6 |
> |
|
7 |
<ListView android:id="@+id/listMessages" |
|
8 |
android:layout_width="wrap_content" |
|
9 |
android:layout_height="wrap_content" |
|
10 |
android:layout_weight="1" |
|
11 |
android:scrollbars="horizontal" |
|
12 |
/> |
|
13 |
<EditText android:id="@+id/sendText" |
|
14 |
android:layout_width="fill_parent" |
|
15 |
android:layout_height="wrap_content" |
|
16 |
android:singleLine="true" |
|
17 |
android:textSize="16sp" |
|
18 |
android:autoText="false" |
|
19 |
android:capitalize="none" |
|
20 |
android:scrollHorizontally="true"/> |
|
21 |
<Button android:id="@+id/send" |
|
22 |
android:layout_width="fill_parent" |
|
23 |
android:layout_height="wrap_content" |
|
24 |
android:text="Send"> |
|
25 |
</Button> |
|
26 |
</LinearLayout> |