diff options
Diffstat (limited to 'app/src/main/res/layout/image_pager_item.xml')
-rw-r--r-- | app/src/main/res/layout/image_pager_item.xml | 23 |
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 |