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"/> 8 9 <ImageView style="@style/footerButton" 10 android:id="@+id/play" 11 android:layout_toStartOf="@id/next" 12 android:src="@drawable/play" 13 android:contentDescription="@string/button.animate"/> 14 15 <TextView style="@style/footerNote" 16 android:id="@+id/note" 17 android:layout_toStartOf="@id/play" 18 android:layout_toEndOf="@id/previous"/> 19 20 </RelativeLayout> 21 22 <com.davemorrissey.labs.subscaleview.test.extension.views.PinView style="@style/mainPanel" android:id="@+id/imageView"/> 23 24</RelativeLayout> 25