Advertisement
minafaw3

customer setting

Apr 2nd, 2017
337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.92 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. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:id="@+id/layout">
  8. <LinearLayout
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content"
  11. android:orientation="vertical"
  12. android:layout_marginLeft="22.3dp"
  13. android:layout_marginStart="22.3dp"
  14. android:layout_marginRight="15.3dp"
  15. android:layout_marginEnd="15.3dp"
  16. android:layout_marginTop="19dp">
  17. <LinearLayout
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:orientation="vertical">
  21. <ReadyApps.Xamarin.Framework.Droid.Controls.ExtTextView
  22. android:layout_width="wrap_content"
  23. android:layout_height="wrap_content"
  24. android:textSize="13.3sp"
  25. android:textColor="@color/bluey_grey"
  26. android:textAllCaps="true"
  27. android:text="@string/language" />
  28. <ReadyApps.Xamarin.Framework.Droid.Controls.ExtTextView
  29. android:id="@+id/languageText"
  30. android:layout_width="wrap_content"
  31. android:layout_height="wrap_content"
  32. android:textSize="13.3sp"
  33. android:textColor="@color/orange_two"
  34. android:text="@string/english" />
  35. </LinearLayout>
  36. <View
  37. android:layout_width="match_parent"
  38. android:layout_height="1dp"
  39. android:layout_marginTop="15dp"
  40. android:background="@color/silver_two" />
  41. <RelativeLayout
  42. android:layout_width="wrap_content"
  43. android:layout_height="wrap_content"
  44. android:layout_marginTop="18dp">
  45. <LinearLayout
  46. android:layout_width="wrap_content"
  47. android:layout_height="wrap_content"
  48. android:layout_alignParentLeft="true"
  49. android:layout_alignParentStart="true"
  50. android:layout_toLeftOf="@+id/notificationChk"
  51. android:layout_toStartOf="@+id/notificationChk"
  52. android:orientation="vertical">
  53. <ReadyApps.Xamarin.Framework.Droid.Controls.ExtTextView
  54. android:layout_width="wrap_content"
  55. android:layout_height="wrap_content"
  56. android:textSize="13.3sp"
  57. android:textColor="@color/bluey_grey"
  58. android:textAllCaps="true"
  59. android:text="@string/push_notifications" />
  60. <ReadyApps.Xamarin.Framework.Droid.Controls.ExtTextView
  61. android:layout_width="wrap_content"
  62. android:layout_height="wrap_content"
  63. android:textSize="11.7sp"
  64. android:textColor="@color/cool_grey"
  65. android:text="@string/pushNotificationDetails" />
  66. </LinearLayout>
  67. <ReadyApps.Xamarin.Framework.Droid.Controls.ExtCheckBox
  68. android:id="@+id/notificationChk"
  69. android:layout_width="wrap_content"
  70. android:layout_height="wrap_content"
  71. app:buttonTint="@color/colorPrimary"
  72. android:layout_centerVertical="true"
  73. android:layout_alignParentRight="true"
  74. android:layout_alignParentEnd="true" />
  75. </RelativeLayout>
  76. <View
  77. android:layout_width="match_parent"
  78. android:layout_height="1dp"
  79. android:layout_marginTop="15dp"
  80. android:background="@color/silver_two" />
  81. <RelativeLayout
  82. android:layout_width="wrap_content"
  83. android:layout_height="wrap_content"
  84. android:layout_marginTop="18dp">
  85. <LinearLayout
  86. android:layout_width="wrap_content"
  87. android:layout_height="wrap_content"
  88. android:layout_alignParentLeft="true"
  89. android:layout_alignParentStart="true"
  90. android:layout_toLeftOf="@+id/newsLatterChk"
  91. android:layout_toStartOf="@+id/newsLatterChk"
  92. android:orientation="vertical">
  93. <ReadyApps.Xamarin.Framework.Droid.Controls.ExtTextView
  94. android:layout_width="wrap_content"
  95. android:layout_height="wrap_content"
  96. android:textSize="13.3sp"
  97. android:textAllCaps="true"
  98. android:textColor="@color/bluey_grey"
  99. android:text="@string/newsletter" />
  100. <ReadyApps.Xamarin.Framework.Droid.Controls.ExtTextView
  101. android:layout_width="wrap_content"
  102. android:layout_height="wrap_content"
  103. android:textSize="11.7sp"
  104. android:textColor="@color/cool_grey"
  105. android:text="@string/newsLetterDetails" />
  106. </LinearLayout>
  107. <ReadyApps.Xamarin.Framework.Droid.Controls.ExtCheckBox
  108. android:id="@+id/newsLatterChk"
  109. android:layout_width="wrap_content"
  110. android:layout_height="wrap_content"
  111. app:buttonTint="@color/colorPrimary"
  112. android:layout_centerVertical="true"
  113. android:layout_alignParentRight="true"
  114. android:layout_alignParentEnd="true" />
  115. </RelativeLayout>
  116. <View
  117. android:layout_width="match_parent"
  118. android:layout_height="1dp"
  119. android:layout_marginTop="15dp"
  120. android:background="@color/silver_two" />
  121. <ReadyApps.Xamarin.Framework.Droid.Controls.ExtTextView
  122. android:text="@string/save"
  123. android:layout_marginTop="20dp"
  124. android:padding="10dp"
  125. android:textSize="14.7dp"
  126. android:textAllCaps="true"
  127. android:layout_gravity="center"
  128. android:gravity="center"
  129. android:textColor="@color/orange_three"
  130. android:layout_width="wrap_content"
  131. android:layout_height="wrap_content"
  132. android:id="@+id/saveBtn" />
  133. <ReadyApps.Xamarin.Framework.Droid.Controls.ExtTextView
  134. android:id="@+id/logoutBtn"
  135. android:text="@string/logout"
  136. android:textAllCaps="true"
  137. android:layout_marginTop="15dp"
  138. android:layout_width="wrap_content"
  139. android:layout_height="wrap_content"
  140. android:layout_gravity="center"
  141. android:textColor="@color/tomato" />
  142. <Space
  143. android:layout_width="wrap_content"
  144. android:layout_height="20dp" />
  145. </LinearLayout>
  146. </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement