Advertisement
Guest User

Untitled

a guest
Jan 24th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.01 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.constraint.ConstraintLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:app="http://schemas.android.com/apk/res-auto"
  5. xmlns:tools="http://schemas.android.com/tools"
  6. android:layout_width="match_parent"
  7. android:layout_height="wrap_content">
  8.  
  9. <ImageView
  10. android:id="@+id/arrow"
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:layout_marginLeft="@dimen/add_services_margin"
  14. android:layout_marginStart="@dimen/add_services_margin"
  15. android:layout_marginTop="@dimen/add_services_margin_top"
  16. android:src="@drawable/ic_info"
  17. app:layout_constraintStart_toStartOf="parent"
  18. app:layout_constraintTop_toTopOf="parent"
  19. tools:ignore="ContentDescription"/>
  20.  
  21. <RelativeLayout
  22. android:layout_width="0dp"
  23. android:layout_height="wrap_content">
  24.  
  25. <com.musala.ui.uilibrary.views.CustomFontTextView
  26. android:id="@+id/phone_number_text_view"
  27. style="@style/NormalTextRegularFontStyle"
  28. android:layout_width="match_parent"
  29. android:layout_height="wrap_content"
  30. android:layout_centerVertical="true"
  31. android:layout_margin="@dimen/add_services_margin"
  32. android:textColor="@color/color_20"
  33. app:layout_constraintTop_toTopOf="parent"
  34. tools:text="0888123456"/>
  35.  
  36. <com.musala.ui.uilibrary.views.CustomFontTextView
  37. android:id="@+id/phone_number_description"
  38. style="@style/VerySmallTextRegularFontStyle"
  39. android:layout_width="0dp"
  40. android:layout_height="wrap_content"
  41. android:layout_margin="@dimen/add_services_margin"
  42. app:layout_constraintRight_toLeftOf="@+id/edit_icon"
  43. app:layout_constraintStart_toEndOf="@+id/arrow"
  44. app:layout_constraintTop_toBottomOf="@+id/phone_number_text_view"
  45. tools:text="Мобилни Разговори"/>
  46.  
  47. <com.musala.ui.uilibrary.views.CustomFontTextView
  48. android:id="@+id/tariff_plan_label"
  49. style="@style/VerySmallTextRegularFontStyle"
  50. android:layout_width="0dp"
  51. android:layout_height="wrap_content"
  52. android:layout_marginEnd="@dimen/add_services_margin"
  53. android:layout_marginStart="@dimen/add_services_margin"
  54. android:layout_marginTop="@dimen/add_services_margin_top"
  55. android:text="@string/roaming_tariff_plan"
  56. app:layout_constraintEnd_toStartOf="@+id/edit_icon"
  57. app:layout_constraintStart_toEndOf="@+id/arrow"
  58. app:layout_constraintTop_toBottomOf="@+id/phone_number_description"/>
  59.  
  60. <com.musala.ui.uilibrary.views.CustomFontTextView
  61. android:id="@+id/tariff_plan_value"
  62. style="@style/VerySmallTextRegularFontStyle"
  63. android:layout_width="0dp"
  64. android:layout_height="wrap_content"
  65. android:layout_marginEnd="@dimen/add_services_margin"
  66. android:layout_marginStart="@dimen/add_services_margin"
  67. android:layout_marginTop="@dimen/added_services_margin_top"
  68. app:layout_constraintEnd_toStartOf="@+id/edit_icon"
  69. app:layout_constraintStart_toEndOf="@+id/arrow"
  70. app:layout_constraintTop_toBottomOf="@+id/tariff_plan_label"
  71. tools:text="Мтел без граници 3XL"/>
  72.  
  73. <com.musala.ui.uilibrary.views.CustomFontTextView
  74. android:id="@+id/contract_expiration_label"
  75. style="@style/VerySmallTextRegularFontStyle"
  76. android:layout_width="0dp"
  77. android:layout_height="wrap_content"
  78. android:layout_marginEnd="@dimen/add_services_margin"
  79. android:layout_marginStart="@dimen/add_services_margin"
  80. android:layout_marginTop="@dimen/add_services_margin_top"
  81. android:text="@string/myservices_contract_expiration"
  82. app:layout_constraintEnd_toStartOf="@+id/edit_icon"
  83. app:layout_constraintStart_toEndOf="@+id/arrow"
  84. app:layout_constraintTop_toBottomOf="@+id/tariff_plan_value"/>
  85.  
  86. <com.musala.ui.uilibrary.views.CustomFontTextView
  87. android:id="@+id/contract_expiration_value"
  88. style="@style/VerySmallTextRegularFontStyle"
  89. android:layout_width="0dp"
  90. android:layout_height="wrap_content"
  91. android:layout_marginEnd="@dimen/add_services_margin"
  92. android:layout_marginStart="@dimen/add_services_margin"
  93. android:layout_marginTop="@dimen/added_services_margin_top"
  94. app:layout_constraintEnd_toStartOf="@+id/edit_icon"
  95. app:layout_constraintStart_toEndOf="@+id/arrow"
  96. app:layout_constraintTop_toBottomOf="@+id/contract_expiration_label"
  97. tools:text="19.06.2018"/>
  98.  
  99. <com.musala.ui.uilibrary.views.CustomFontTextView
  100. android:id="@+id/corresponding_address_label"
  101. style="@style/VerySmallTextRegularFontStyle"
  102. android:layout_width="0dp"
  103. android:layout_height="wrap_content"
  104. android:layout_marginEnd="@dimen/add_services_margin"
  105. android:layout_marginStart="@dimen/add_services_margin"
  106. android:layout_marginTop="@dimen/add_services_margin_top"
  107. android:text="@string/myservices_corresponding_address"
  108. app:layout_constraintEnd_toStartOf="@+id/edit_icon"
  109. app:layout_constraintStart_toEndOf="@+id/arrow"
  110. app:layout_constraintTop_toBottomOf="@+id/contract_expiration_value"/>
  111.  
  112. <com.musala.ui.uilibrary.views.CustomFontTextView
  113. android:id="@+id/corresponding_address_value"
  114. style="@style/VerySmallTextRegularFontStyle"
  115. android:layout_width="0dp"
  116. android:layout_height="wrap_content"
  117. android:layout_marginEnd="@dimen/add_services_margin"
  118. android:layout_marginStart="@dimen/add_services_margin"
  119. android:layout_marginTop="@dimen/added_services_margin_top"
  120. app:layout_constraintEnd_toStartOf="@+id/edit_icon"
  121. app:layout_constraintStart_toEndOf="@+id/arrow"
  122. app:layout_constraintTop_toBottomOf="@+id/corresponding_address_label"
  123. tools:text="Гр. Софија ул.Луи Аиер 115, ап.5"/>
  124.  
  125. <com.musala.ui.uilibrary.views.CustomFontTextView
  126. android:id="@+id/service_type_label"
  127. style="@style/VerySmallTextRegularFontStyle"
  128. android:layout_width="0dp"
  129. android:layout_height="wrap_content"
  130. android:layout_marginEnd="@dimen/add_services_margin"
  131. android:layout_marginStart="@dimen/add_services_margin"
  132. android:layout_marginTop="@dimen/add_services_margin_top"
  133. android:text="@string/service_type"
  134. app:layout_constraintEnd_toStartOf="@+id/edit_icon"
  135. app:layout_constraintStart_toEndOf="@+id/arrow"
  136. app:layout_constraintTop_toBottomOf="@+id/corresponding_address_value"/>
  137.  
  138. <com.musala.ui.uilibrary.views.CustomFontTextView
  139. android:id="@+id/service_type_value"
  140. style="@style/VerySmallTextRegularFontStyle"
  141. android:layout_width="0dp"
  142. android:layout_height="wrap_content"
  143. android:layout_marginEnd="@dimen/add_services_margin"
  144. android:layout_marginStart="@dimen/add_services_margin"
  145. android:layout_marginTop="@dimen/added_services_margin_top"
  146. app:layout_constraintEnd_toStartOf="@+id/edit_icon"
  147. app:layout_constraintStart_toEndOf="@+id/arrow"
  148. app:layout_constraintTop_toBottomOf="@+id/service_type_label"
  149. tools:text="Собствена услуга"/>
  150.  
  151. <TextView
  152. android:id="@+id/separator_view"
  153. style="@style/SeparatorTextViewStyle"
  154. android:layout_width="0dp"
  155. android:layout_alignParentBottom="true"
  156. android:layout_marginTop="@dimen/add_services_margin"
  157. android:layout_toEndOf="@id/setting_image_view"
  158. android:layout_toRightOf="@id/setting_image_view"
  159. app:layout_constraintRight_toRightOf="parent"
  160. app:layout_constraintStart_toStartOf="@id/phone_number_text_view"
  161. app:layout_constraintTop_toBottomOf="@+id/service_type_value"/>
  162.  
  163. </RelativeLayout>
  164.  
  165. <ImageView
  166. android:id="@+id/edit_icon"
  167. android:layout_width="wrap_content"
  168. android:layout_height="wrap_content"
  169. android:layout_marginEnd="@dimen/add_services_margin"
  170. android:layout_marginRight="@dimen/add_services_margin"
  171. android:layout_marginTop="@dimen/add_services_margin_top"
  172. android:src="@drawable/ic_info"
  173. app:layout_constraintEnd_toEndOf="parent"
  174. app:layout_constraintTop_toTopOf="parent"
  175. tools:ignore="ContentDescription"/>
  176.  
  177. </android.support.constraint.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement