• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
3    android:layout_width="match_parent"
4    android:layout_height="match_parent"
5    android:orientation="vertical" >
6
7    <ListView
8        android:id="@android:id/list"
9        android:layout_width="match_parent"
10        android:layout_height="match_parent"
11        android:layout_marginBottom="50dip"
12        android:transcriptMode="alwaysScroll" >
13
14        <!-- Preview: listitem=@android:layout/simple_list_item_1 -->
15
16    </ListView>
17
18    <LinearLayout
19        android:layout_width="match_parent"
20        android:layout_height="50dip"
21        android:layout_gravity="bottom" >
22
23        <EditText
24            android:id="@+id/txtChatLine"
25            android:layout_width="wrap_content"
26            android:layout_height="wrap_content"
27            android:layout_gravity="bottom"
28            android:layout_weight="0.90"
29            android:focusableInTouchMode="true"
30            android:hint="@string/txt_hint"
31            android:visibility="visible" >
32        </EditText>
33
34        <Button
35            android:id="@+id/button1"
36            android:layout_width="wrap_content"
37            android:layout_height="wrap_content"
38            android:layout_gravity="bottom|right"
39            android:layout_weight="0.10"
40            android:text="@string/btn_send" />
41    </LinearLayout>
42
43</FrameLayout>