• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" style="@style/fill">
2
3    <RelativeLayout style="@style/footer" android:id="@+id/footer">
4
5        <ImageView style="@style/previousButton" android:id="@+id/previous" android:contentDescription="@string/button.previous"/>
6
7        <ImageView style="@style/nextButton" android:id="@+id/next" android:contentDescription="@string/button.next" android:visibility="invisible"/>
8
9        <ImageView style="@style/footerButton"
10                android:id="@+id/rotate"
11                android:layout_toStartOf="@id/next"
12                android:src="@drawable/rotate"
13                android:contentDescription="@string/button.rotate"/>
14
15        <TextView style="@style/footerNote"
16                android:id="@+id/note"
17                android:text="@string/display.p3.text"
18                android:layout_toStartOf="@id/rotate"
19                android:layout_toEndOf="@id/previous"/>
20
21    </RelativeLayout>
22
23    <com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView style="@style/mainPanel" android:id="@+id/imageView"/>
24
25</RelativeLayout>
26