summaryrefslogtreecommitdiff
path: root/res/layout/share.xml
diff options
context:
space:
mode:
authorJoe Robinson <joe@sol.(none)>2011-10-22 00:13:24 +0100
committerJoe Robinson <joe@sol.(none)>2011-10-22 00:13:24 +0100
commit559305e42e1ea09b8d26085e8f8355bdb6ba0352 (patch)
tree10815d4f875c41842119f372d5e9226bab4abc92 /res/layout/share.xml
parenta983fe36ddf8352b7d1122bdc060d271004724ee (diff)
Updating with code from months ago that wasn't commited (This might
break everything)
Diffstat (limited to 'res/layout/share.xml')
-rw-r--r--res/layout/share.xml30
1 files changed, 30 insertions, 0 deletions
diff --git a/res/layout/share.xml b/res/layout/share.xml
new file mode 100644
index 0000000..6a70ea3
--- /dev/null
+++ b/res/layout/share.xml
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent">
+ <TextView
+ android:text="Enter Filename"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ />
+ <EditText
+ android:id="@+id/filename"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:focusable="true"
+ />
+ <TextView
+ android:text=" "
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ />
+ <Button
+ android:id="@+id/uploadfile"
+ android:layout_height="wrap_content"
+ android:layout_width="fill_parent"
+ android:text="Upload"
+ />
+
+</LinearLayout>