diff options
Diffstat (limited to 'workspace/BlaMail/res/layout')
-rw-r--r-- | workspace/BlaMail/res/layout/main.xml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/workspace/BlaMail/res/layout/main.xml b/workspace/BlaMail/res/layout/main.xml new file mode 100644 index 0000000..a770573 --- /dev/null +++ b/workspace/BlaMail/res/layout/main.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" + android:layout_height="fill_parent"> + <TextView + android:id="@+id/label" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:text="SMS Text:"/> + <EditText + android:id="@+id/text" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:background="@android:drawable/editbox_background" + android:layout_below="@id/label"/> + <Button + android:id="@+id/send" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_below="@id/text" + android:layout_alignParentRight="true" + android:layout_marginLeft="10dip" + android:text="Send" /> +</RelativeLayout> |