summaryrefslogtreecommitdiff
path: root/res/layout/share.xml
diff options
context:
space:
mode:
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>