--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/res/layout/sendim.xml Sat Mar 21 00:48:28 2009 +0100
@@ -0,0 +1,25 @@
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ >
+ <ListView android:id="@+id/listMessages"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:scrollbars="horizontal"
+ />
+ <EditText android:id="@+id/sendText"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:singleLine="true"
+ android:textSize="16sp"
+ android:autoText="false"
+ android:capitalize="none"
+ android:scrollHorizontally="true"/>
+ <Button android:id="@+id/send"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="Send">
+ </Button>
+</LinearLayout>