aboutsummaryrefslogtreecommitdiff
path: root/sample/src/main/res/layout/imagedisplay_rotate_fragment.xml
diff options
context:
space:
mode:
authorDavid Morrissey <davemorrissey@gmail.com>2017-11-02 18:59:25 +0000
committerDavid Morrissey <davemorrissey@gmail.com>2017-11-02 18:59:26 +0000
commit0cae9eb5b2b68ad2bea9586036500925018e8c8b (patch)
tree1361e0dce27fc9a2cdc40594c982032e38ec20ea /sample/src/main/res/layout/imagedisplay_rotate_fragment.xml
parentc930ef77f57c0619c10893696452b94e75e0dd23 (diff)
downloadsubsampling-scale-image-view-0cae9eb5b2b68ad2bea9586036500925018e8c8b.tar.gz
Updated to current standard project structure
Diffstat (limited to 'sample/src/main/res/layout/imagedisplay_rotate_fragment.xml')
-rw-r--r--sample/src/main/res/layout/imagedisplay_rotate_fragment.xml25
1 files changed, 25 insertions, 0 deletions
diff --git a/sample/src/main/res/layout/imagedisplay_rotate_fragment.xml b/sample/src/main/res/layout/imagedisplay_rotate_fragment.xml
new file mode 100644
index 0000000..9dbf50a
--- /dev/null
+++ b/sample/src/main/res/layout/imagedisplay_rotate_fragment.xml
@@ -0,0 +1,25 @@
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" style="@style/fill">
+
+ <RelativeLayout style="@style/footer" android:id="@+id/footer">
+
+ <ImageView style="@style/previousButton" android:id="@+id/previous" android:contentDescription="@string/button.previous"/>
+
+ <ImageView style="@style/nextButton" android:id="@+id/next" android:contentDescription="@string/button.next"/>
+
+ <ImageView style="@style/footerButton"
+ android:id="@+id/rotate"
+ android:layout_toStartOf="@id/next"
+ android:src="@drawable/rotate"
+ android:contentDescription="@string/button.rotate"/>
+
+ <TextView style="@style/footerNote"
+ android:id="@+id/note"
+ android:text="@string/display.p2.text"
+ android:layout_toStartOf="@id/rotate"
+ android:layout_toEndOf="@id/previous"/>
+
+ </RelativeLayout>
+
+ <com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView style="@style/mainPanel" android:id="@+id/imageView"/>
+
+</RelativeLayout>