summaryrefslogtreecommitdiff
path: root/app/build/intermediates/res/merged/debug/layout/share.xml
diff options
context:
space:
mode:
authorJoe Robinson <joe@lc8n.com>2015-12-15 20:43:45 +0000
committerJoe Robinson <joe@lc8n.com>2015-12-15 20:43:45 +0000
commit30d164851ac3d4e7397e010baa24a8e5cb0dc090 (patch)
treefcb45696618d4588fb4fcd052db2c217e587d82e /app/build/intermediates/res/merged/debug/layout/share.xml
parenteb7c5e7d7b332fb488658bb84066b0b3c516896e (diff)
Migrate to IntelliJ format, also contains some minor logging changes and moved librariesHEADmaster
Diffstat (limited to 'app/build/intermediates/res/merged/debug/layout/share.xml')
-rw-r--r--app/build/intermediates/res/merged/debug/layout/share.xml82
1 files changed, 82 insertions, 0 deletions
diff --git a/app/build/intermediates/res/merged/debug/layout/share.xml b/app/build/intermediates/res/merged/debug/layout/share.xml
new file mode 100644
index 0000000..2573155
--- /dev/null
+++ b/app/build/intermediates/res/merged/debug/layout/share.xml
@@ -0,0 +1,82 @@
+<?xml version="1.0" encoding="utf-8"?>
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:android1="http://schemas.android.com/apk/res/android"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:orientation="vertical" >
+<ScrollView
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent">
+ <LinearLayout
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:gravity="top"
+ android:orientation="vertical" >
+
+ <TextView
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="Enter Filename" />
+
+ <EditText
+ android:id="@+id/filename"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:focusable="true" />
+ <Button
+ android:id="@+id/uploadfile"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="Upload" />
+
+ <RelativeLayout
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:gravity="top"
+ android:orientation="horizontal"
+ android:background="#333333"
+ >
+
+ <ImageView
+ android:id="@+id/thumbnail"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_centerHorizontal="true"
+ android:layout_margin="5dp"
+ android1:layout_marginBottom="5dp" />
+
+ </RelativeLayout>
+ <LinearLayout
+ android:id="@+id/content"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal" >
+ <Button
+ android:id="@+id/rotateleft"
+ android:layout_height="wrap_content"
+ android:layout_width="wrap_content"
+ android:text="Rotate Left"
+ />
+ <Button
+ android:id="@+id/rotateright"
+ android:layout_height="wrap_content"
+ android:layout_width="wrap_content"
+ android:text="Rotate Right"
+ />
+
+ <CheckBox
+ android1:id="@+id/resize"
+ android1:layout_width="wrap_content"
+ android1:layout_height="wrap_content"
+ android1:checked="true"
+ android1:text="Reduce Size" />
+
+ </LinearLayout>
+
+
+ </LinearLayout>
+</ScrollView>
+</RelativeLayout>
+
+
+