fragment_layout_around.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. <com.ivalentin.gm.CustomScrollView
  2. 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. android:background="@color/background_app"
  7. android:padding="7dp">
  8. <LinearLayout
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:orientation="vertical"
  12. >
  13. <LinearLayout
  14. android:layout_width="match_parent"
  15. android:layout_height="match_parent"
  16. android:orientation="vertical"
  17. android:background="@drawable/section">
  18. <TextView
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:textAppearance="?android:attr/textAppearanceLarge"
  22. android:text="@string/around_header"
  23. android:id="@+id/textView6"/>
  24. <LinearLayout
  25. android:orientation="vertical"
  26. android:layout_width="match_parent"
  27. android:layout_height="match_parent"
  28. android:id="@+id/ll_around_list">
  29. </LinearLayout>
  30. </LinearLayout>
  31. <LinearLayout
  32. android:id="@+id/ll_around_no_events"
  33. android:layout_width="fill_parent"
  34. android:layout_height="match_parent"
  35. android:orientation="vertical"
  36. android:padding="7dp"
  37. android:visibility="gone"
  38. android:background="@drawable/section">
  39. <TextView
  40. android:layout_width="wrap_content"
  41. android:layout_height="wrap_content"
  42. android:gravity="center_horizontal"
  43. android:text="@string/around_no_events_0"
  44. android:textAppearance="?android:attr/textAppearanceLarge" />
  45. <TextView
  46. android:layout_width="fill_parent"
  47. android:layout_height="wrap_content"
  48. android:layout_gravity="center_horizontal"
  49. android:layout_marginTop="15dp"
  50. android:text="@string/around_no_events_1"
  51. android:background="@drawable/entry"
  52. android:padding="7dp"/>
  53. <Button
  54. android:id="@+id/bt_around_no_events"
  55. android:layout_width="wrap_content"
  56. android:layout_height="wrap_content"
  57. android:layout_gravity="center_horizontal"
  58. android:layout_marginTop="20dp"
  59. android:background="@drawable/button_selector"
  60. android:padding="6dp"
  61. android:text="@string/around_no_events_button"
  62. android:textColor="@color/input_button_color"
  63. android:textStyle="bold"
  64. android:layout_marginBottom="15dp"/>
  65. </LinearLayout>
  66. <LinearLayout
  67. android:id="@+id/ll_around_no_gps"
  68. android:layout_width="fill_parent"
  69. android:layout_height="match_parent"
  70. android:orientation="vertical"
  71. android:padding="7dp"
  72. android:visibility="gone"
  73. android:background="@drawable/section">
  74. <TextView
  75. android:layout_width="wrap_content"
  76. android:layout_height="wrap_content"
  77. android:text="@string/around_no_gps"
  78. android:textAppearance="?android:attr/textAppearanceLarge" />
  79. <TextView
  80. android:layout_width="fill_parent"
  81. android:layout_height="wrap_content"
  82. android:layout_gravity="center_horizontal"
  83. android:layout_marginTop="15dp"
  84. android:text="@string/around_no_gps_text"
  85. android:background="@drawable/entry"
  86. android:padding="7dp"
  87. android:id="@+id/textView8"/>
  88. <Button
  89. android:id="@+id/bt_around_no_gps"
  90. android:layout_width="wrap_content"
  91. android:layout_height="wrap_content"
  92. android:layout_gravity="center_horizontal"
  93. android:layout_marginTop="20dp"
  94. android:background="@drawable/button_selector"
  95. android:padding="6dp"
  96. android:text="@string/around_no_gps_button"
  97. android:textStyle="bold"
  98. android:textColor="@color/input_button_color"
  99. android:layout_marginBottom="15dp"/>
  100. </LinearLayout>
  101. </LinearLayout>
  102. </com.ivalentin.gm.CustomScrollView>