aboutsummaryrefslogtreecommitdiff
path: root/sample/src/main/res/layout/imagedisplay_rotate_fragment.xml
blob: 9dbf50ac0fcb8f42722d1cdb478d21759578508e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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>