Advertisement
den11

Untitled

Mar 27th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.58 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:background="@color/bg"
  7. android:orientation="vertical">
  8.  
  9. <com.vpapps.utils.StatusBarView
  10. android:id="@+id/statusBar"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:background="@drawable/bg_grt_toolbar" />
  14.  
  15. <android.support.v7.widget.Toolbar
  16. android:id="@+id/toolbar_setting"
  17. android:layout_width="match_parent"
  18. android:layout_height="?attr/actionBarSize"
  19. android:background="@drawable/bg_grt_toolbar"
  20. android:theme="@style/AppTheme.AppBarOverlay"
  21. app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
  22.  
  23. <ScrollView
  24. android:id="@+id/scrollview"
  25. android:layout_width="match_parent"
  26. android:layout_height="0dp"
  27. android:layout_weight="1">
  28.  
  29. <LinearLayout
  30. android:layout_width="match_parent"
  31. android:layout_height="wrap_content"
  32. android:orientation="vertical">
  33.  
  34. <LinearLayout
  35. android:id="@+id/ll_consent"
  36. android:layout_width="match_parent"
  37. android:layout_height="60dp"
  38. android:background="?attr/selectableItemBackground"
  39. android:gravity="center_vertical"
  40. android:orientation="horizontal"
  41. android:paddingStart="10dp"
  42. android:paddingEnd="10dp">
  43.  
  44. <LinearLayout
  45. android:layout_width="0dp"
  46. android:layout_height="wrap_content"
  47. android:layout_weight="1"
  48. android:orientation="vertical">
  49.  
  50. <TextView
  51. android:id="@+id/textView7"
  52. android:layout_width="wrap_content"
  53. android:layout_height="wrap_content"
  54. android:layout_marginStart="7dp"
  55. android:layout_marginLeft="7dp"
  56. android:text="@string/your_ad_consent"
  57. android:textAppearance="?android:attr/textAppearanceMedium"
  58. android:textColor="@color/white" />
  59.  
  60. <TextView
  61. android:id="@+id/tv_show_personalized"
  62. android:layout_width="wrap_content"
  63. android:layout_height="wrap_content"
  64. android:layout_marginStart="8dp"
  65. android:layout_marginLeft="8dp"
  66. android:text="@string/show_personalized_ad"
  67. android:textAppearance="?android:attr/textAppearanceMedium"
  68. android:textColor="@color/red"
  69. android:textSize="12sp" />
  70.  
  71. </LinearLayout>
  72.  
  73. <android.support.v7.widget.SwitchCompat
  74. android:id="@+id/switch_consent"
  75. android:layout_width="wrap_content"
  76. android:layout_height="wrap_content"
  77. android:layout_marginEnd="10dp"
  78. android:layout_marginRight="10dp"
  79. android:checked="true" />
  80.  
  81. </LinearLayout>
  82.  
  83. <View
  84. android:layout_width="match_parent"
  85. android:layout_height="1dp"
  86. android:background="@color/line" />
  87.  
  88. <LinearLayout
  89. android:id="@+id/llvibrate"
  90. android:layout_width="match_parent"
  91. android:layout_height="60dp"
  92. android:background="?attr/selectableItemBackground"
  93. android:gravity="center_vertical"
  94. android:orientation="horizontal"
  95. android:paddingStart="10dp"
  96. android:paddingEnd="10dp">
  97.  
  98. <TextView
  99. android:id="@+id/textView6"
  100. android:layout_width="0dp"
  101. android:layout_height="wrap_content"
  102. android:layout_marginStart="7dp"
  103. android:layout_marginLeft="7dp"
  104. android:layout_weight="1"
  105. android:text="@string/enable_push_noti"
  106. android:textAppearance="?android:attr/textAppearanceMedium"
  107. android:textColor="@color/white" />
  108.  
  109. <android.support.v7.widget.SwitchCompat
  110. android:id="@+id/switch_noti"
  111. android:layout_width="wrap_content"
  112. android:layout_height="wrap_content"
  113. android:layout_marginEnd="10dp"
  114. android:layout_marginRight="10dp" />
  115.  
  116. </LinearLayout>
  117.  
  118. <View
  119. android:layout_width="match_parent"
  120. android:layout_height="1dp"
  121. android:background="@color/line"/>
  122.  
  123. <LinearLayout
  124. android:id="@+id/ll_cache"
  125. android:layout_width="match_parent"
  126. android:layout_height="wrap_content"
  127. android:orientation="horizontal"
  128. android:background="?attr/selectableItemBackground">
  129.  
  130. <TextView
  131. android:layout_width="0dp"
  132. android:layout_height="60dp"
  133. android:layout_weight="1"
  134. android:background="?attr/selectableItemBackground"
  135. android:gravity="center_vertical"
  136. android:paddingStart="17dp"
  137. android:paddingLeft="17dp"
  138. android:text="@string/clear_cache"
  139. android:textAppearance="?android:attr/textAppearanceMedium"
  140. android:textColor="@color/white" />
  141.  
  142. <TextView
  143. android:id="@+id/tv_cachesize"
  144. android:layout_width="wrap_content"
  145. android:layout_height="60dp"
  146. android:background="?attr/selectableItemBackground"
  147. android:gravity="center_vertical"
  148. android:paddingStart="20dp"
  149. android:paddingEnd="20dp"
  150. android:text="0 MB"
  151. android:textAppearance="?android:attr/textAppearanceMedium"
  152. android:textColor="@color/white" />
  153.  
  154. <ImageView
  155. android:layout_width="30dp"
  156. android:layout_height="30dp"
  157. android:src="@drawable/clear"
  158. android:layout_marginRight="20dp"
  159. android:layout_marginEnd="20dp"
  160. android:padding="4dp"
  161. android:layout_gravity="center_vertical"/>
  162.  
  163. </LinearLayout>
  164.  
  165. <View
  166. android:layout_width="match_parent"
  167. android:layout_height="1dp"
  168. android:visibility="invisible"
  169. android:background="@color/line"/>
  170.  
  171. <TextView
  172. android:id="@+id/tv_rateapp"
  173. android:layout_width="match_parent"
  174. android:layout_height="0dp"
  175. android:layout_weight="1"
  176. android:background="?attr/selectableItemBackground"
  177. android:gravity="center_vertical"
  178. android:paddingStart="0dp"
  179. android:paddingEnd="0dp"
  180. android:text="@string/rateapp"
  181. android:visibility="invisible"
  182. android:textAppearance="?android:attr/textAppearanceMedium"
  183. android:textColor="@color/white" />
  184.  
  185. <View
  186. android:id="@+id/view_moreapp"
  187. android:layout_width="match_parent"
  188. android:layout_height="1dp"
  189. android:background="@color/line"/>
  190.  
  191. <TextView
  192. android:id="@+id/tv_moreapp"
  193. android:layout_width="match_parent"
  194. android:layout_height="60dp"
  195. android:layout_weight="1"
  196. android:background="?attr/selectableItemBackground"
  197. android:gravity="center_vertical"
  198. android:paddingStart="17dp"
  199. android:paddingEnd="17dp"
  200. android:text="@string/moreapp"
  201. android:textAppearance="?android:attr/textAppearanceMedium"
  202. android:textColor="@color/white" />
  203.  
  204. <View
  205. android:layout_width="match_parent"
  206. android:layout_height="1dp"
  207. android:background="@color/line" />
  208.  
  209. <TextView
  210. android:id="@+id/tv_privacy"
  211. android:layout_width="match_parent"
  212. android:layout_height="60dp"
  213. android:layout_weight="1"
  214. android:background="?attr/selectableItemBackground"
  215. android:gravity="center_vertical"
  216. android:paddingStart="17dp"
  217. android:paddingEnd="17dp"
  218. android:text="@string/privacy_policy"
  219. android:textAppearance="?android:attr/textAppearanceMedium"
  220. android:textColor="@color/white" />
  221.  
  222. </LinearLayout>
  223.  
  224. </ScrollView>
  225.  
  226. <LinearLayout
  227. android:orientation="vertical"
  228. android:id="@+id/ll_adView"
  229. android:layout_width="match_parent"
  230. android:layout_height="wrap_content"/>
  231.  
  232. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement