summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/image_pager_item.xml
diff options
context:
space:
mode:
authorJoe Robinson <joe@lc8n.com>2014-08-13 23:13:52 +0100
committerJoe Robinson <joe@lc8n.com>2014-08-13 23:13:52 +0100
commitb52bf0af7a2af7743b600bb8c3c5a804bf9d2916 (patch)
tree7c2c97bfc4d1828e0767f737b0ade72fe62b9411 /app/src/main/res/layout/image_pager_item.xml
parent164aeea2cb7a04137993eaf66d540603adb978e3 (diff)
Added higher resolution image loading on zoom
Diffstat (limited to 'app/src/main/res/layout/image_pager_item.xml')
-rw-r--r--app/src/main/res/layout/image_pager_item.xml23
1 files changed, 23 insertions, 0 deletions
diff --git a/app/src/main/res/layout/image_pager_item.xml b/app/src/main/res/layout/image_pager_item.xml
new file mode 100644
index 0000000..26d8083
--- /dev/null
+++ b/app/src/main/res/layout/image_pager_item.xml
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="utf-8"?>
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent"
+ android:padding="1dip" >
+ <uk.co.blatech.blaupload.ui.TouchImageView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:id="@+id/imageView"
+ android:layout_alignParentTop="true"
+ android:layout_alignParentLeft="true"
+ android:layout_alignParentStart="true" />
+
+ <uk.co.blatech.blaupload.ui.TouchImageView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:id="@+id/zoomImageView"
+ android:layout_alignParentTop="true"
+ android:layout_alignParentLeft="true"
+ android:layout_alignParentStart="true"
+ android:visibility="gone"/>
+
+</FrameLayout> \ No newline at end of file