25
|
1 |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
2 |
android:orientation="vertical"
|
|
3 |
android:layout_width="fill_parent"
|
|
4 |
android:layout_height="fill_parent"
|
|
5 |
>
|
|
6 |
<ListView android:id="@+id/listMessages"
|
|
7 |
android:layout_width="wrap_content"
|
|
8 |
android:layout_height="wrap_content"
|
|
9 |
android:layout_weight="1"
|
|
10 |
android:scrollbars="horizontal"
|
|
11 |
/>
|
|
12 |
<EditText android:id="@+id/sendText"
|
|
13 |
android:layout_width="fill_parent"
|
|
14 |
android:layout_height="wrap_content"
|
|
15 |
android:singleLine="true"
|
|
16 |
android:textSize="16sp"
|
|
17 |
android:autoText="false"
|
|
18 |
android:capitalize="none"
|
|
19 |
android:scrollHorizontally="true"/>
|
|
20 |
<Button android:id="@+id/send"
|
|
21 |
android:layout_width="fill_parent"
|
|
22 |
android:layout_height="wrap_content"
|
|
23 |
android:text="Send">
|
|
24 |
</Button>
|
|
25 |
</LinearLayout>
|