diff options
author | Luke Miller <Luke@LukesDesktop.(none)> | 2010-10-29 01:44:57 +0100 |
---|---|---|
committer | Luke Miller <Luke@LukesDesktop.(none)> | 2010-10-29 01:44:57 +0100 |
commit | e0299d13f0b5b763afcc1f6bd24c70d2dcc99532 (patch) | |
tree | 0ea3858b6a79fba86a8cfa1a673f6f510188648b /workspace/BlaMail/res/layout |
blamail
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> |