Home | History | Annotate | Download | only in layout
      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         <TextView style="@style/footerNote"
     10                 android:id="@+id/note"
     11                 android:layout_toStartOf="@id/next"
     12                 android:layout_toEndOf="@id/previous"/>
     13 
     14     </RelativeLayout>
     15 
     16     <android.support.v4.view.ViewPager style="@style/mainPanel" android:id="@+id/horizontal_pager" android:visibility="gone" />
     17 
     18     <com.davemorrissey.labs.subscaleview.test.viewpager.VerticalViewPager style="@style/mainPanel" android:id="@+id/vertical_pager" android:visibility="gone"/>
     19 
     20 </RelativeLayout>
     21