Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:orientation="vertical" >
  6.  
  7. <ViewFlipper
  8. android:id="@+id/view_flipper"
  9. android:layout_width="fill_parent"
  10. android:layout_height="fill_parent" >
  11.  
  12. <RelativeLayout
  13. android:layout_width="fill_parent"
  14. android:layout_height="fill_parent" >
  15.  
  16. <ImageView
  17. android:layout_width="fill_parent"
  18. android:layout_height="fill_parent"
  19. android:layout_gravity="center"
  20. android:adjustViewBounds="true"
  21. android:scaleType="centerCrop"
  22. android:src="@drawable/lightning" />
  23.  
  24. <TextView
  25. style="@style/ImageTitle"
  26. android:text="@string/lightning" />
  27. </RelativeLayout>
  28.  
  29. <RelativeLayout
  30. android:layout_width="fill_parent"
  31. android:layout_height="fill_parent" >
  32.  
  33. <ImageView
  34. android:layout_width="fill_parent"
  35. android:layout_height="fill_parent"
  36. android:layout_gravity="center"
  37. android:adjustViewBounds="true"
  38. android:scaleType="centerCrop"
  39. android:src="@drawable/color_baloons" />
  40.  
  41. <TextView
  42. style="@style/ImageTitle"
  43. android:text="@string/color_baloons" />
  44. </RelativeLayout>
  45.  
  46. <RelativeLayout
  47. android:layout_width="fill_parent"
  48. android:layout_height="fill_parent" >
  49.  
  50. <ImageView
  51. android:layout_width="fill_parent"
  52. android:layout_height="fill_parent"
  53. android:layout_gravity="center"
  54. android:adjustViewBounds="true"
  55. android:scaleType="centerCrop"
  56. android:src="@drawable/natural_wall" />
  57.  
  58. <TextView
  59. style="@style/ImageTitle"
  60. android:text="@string/natural_wall" />
  61. </RelativeLayout>
  62. </ViewFlipper>
  63.  
  64. <ImageView
  65. android:id="@+id/swipe_left"
  66. android:layout_width="wrap_content"
  67. android:layout_height="wrap_content"
  68. android:layout_alignParentLeft="true"
  69. android:layout_centerVertical="true"
  70. android:src="@drawable/swipe_left" />
  71.  
  72. <ImageView
  73. android:id="@+id/swipe_right"
  74. android:layout_width="wrap_content"
  75. android:layout_height="wrap_content"
  76. android:layout_alignParentRight="true"
  77. android:layout_centerVertical="true"
  78. android:src="@drawable/swipe_right" />
  79.  
  80. </RelativeLayout>