Guest User

Untitled

a guest
Aug 6th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.54 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.constraint.ConstraintLayout 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="wrap_content"
  6. android:background="@drawable/title_bar"
  7. app:layout_constraintBottom_toBottomOf="parent">
  8.  
  9. <android.support.constraint.Guideline
  10. android:id="@+id/guideline2"
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:orientation="vertical"
  14. app:layout_constraintGuide_percent="0.5" />
  15.  
  16. <android.support.constraint.Guideline
  17. android:id="@+id/guideline1"
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:orientation="vertical"
  21. app:layout_constraintGuide_percent="0.25" />
  22.  
  23. <android.support.constraint.Guideline
  24. android:id="@+id/guideline3"
  25. android:layout_width="wrap_content"
  26. android:layout_height="wrap_content"
  27. android:orientation="vertical"
  28. app:layout_constraintGuide_percent="0.75" />
  29.  
  30. <uk.co.reach.gc.widget.CustomFontTextView
  31. android:id="@+id/textViewHomeInternetLabel"
  32. style="@style/Theme.Reach.HomeStatusPhone.Label"
  33. android:layout_width="0dp"
  34. android:layout_height="wrap_content"
  35. android:text="@string/home_internet_label"
  36. app:layout_constraintRight_toRightOf="@id/guideline1"
  37. app:layout_constraintLeft_toLeftOf="parent" />
  38.  
  39. <uk.co.reach.gc.widget.CustomFontTextView
  40. android:id="@+id/textViewHomeInternetStatus"
  41. style="@style/Theme.Reach.HomeStatusPhone"
  42. android:layout_height="wrap_content"
  43. android:layout_width="0dp"
  44. app:layout_constraintLeft_toLeftOf="parent"
  45. app:layout_constraintRight_toRightOf="@id/guideline1"
  46. app:layout_constraintTop_toBottomOf="@+id/textViewHomeInternetLabel"
  47. android:text="@string/home_internet_status" />
  48.  
  49. <uk.co.reach.gc.widget.CustomFontTextView
  50. android:id="@+id/textViewHomeServerLabel"
  51. style="@style/Theme.Reach.HomeStatusPhone.Label"
  52. android:layout_width="0dp"
  53. android:layout_height="wrap_content"
  54. app:layout_constraintLeft_toLeftOf="@id/guideline1"
  55. app:layout_constraintRight_toRightOf="@id/guideline2"
  56. android:text="@string/home_server_label" />
  57.  
  58. <uk.co.reach.gc.widget.CustomFontTextView
  59. android:id="@+id/textViewHomeServerStatus"
  60. style="@style/Theme.Reach.HomeStatusPhone"
  61. android:layout_width="0dp"
  62. android:layout_height="wrap_content"
  63. app:layout_constraintLeft_toLeftOf="@id/guideline1"
  64. app:layout_constraintRight_toRightOf="@id/guideline2"
  65. app:layout_constraintTop_toBottomOf="@+id/textViewHomeServerLabel"
  66. android:text="@string/home_server_status" />
  67.  
  68. <uk.co.reach.gc.widget.CustomFontTextView
  69. android:id="@+id/textViewHomeLastSyncLabel"
  70. style="@style/Theme.Reach.HomeStatusPhone.Label"
  71. android:layout_width="0dp"
  72. android:layout_height="wrap_content"
  73. app:layout_constraintLeft_toLeftOf="@id/guideline2"
  74. app:layout_constraintRight_toRightOf="@id/guideline3"
  75. android:text="@string/home_last_sync_label" />
  76.  
  77. <uk.co.reach.gc.widget.CustomFontTextView
  78. android:id="@+id/textViewHomeLastSyncDateTime"
  79. style="@style/Theme.Reach.HomeStatusPhone"
  80. android:layout_width="0dp"
  81. android:layout_height="wrap_content"
  82. app:layout_constraintLeft_toLeftOf="@id/guideline2"
  83. app:layout_constraintRight_toRightOf="@id/guideline3"
  84. app:layout_constraintTop_toBottomOf="@+id/textViewHomeLastSyncLabel"
  85. android:text="@string/home_last_sync_value" />
  86.  
  87. <uk.co.reach.gc.widget.CustomFontTextView
  88. android:id="@+id/textViewHomeViewLabel"
  89. style="@style/Theme.Reach.HomeStatusPhone.Label"
  90. android:layout_width="0dp"
  91. android:layout_height="wrap_content"
  92. app:layout_constraintLeft_toLeftOf="@id/guideline3"
  93. app:layout_constraintRight_toRightOf="parent"
  94. android:text="@string/home_view_label" />
  95.  
  96. <uk.co.reach.gc.widget.CustomFontTextView
  97. android:id="@+id/textViewHomeViewValue"
  98. style="@style/Theme.Reach.HomeStatusPhone"
  99. android:layout_width="0dp"
  100. android:layout_height="wrap_content"
  101. app:layout_constraintLeft_toLeftOf="@id/guideline3"
  102. app:layout_constraintRight_toRightOf="parent"
  103. app:layout_constraintTop_toBottomOf="@+id/textViewHomeViewLabel"
  104. android:text="@string/home_view_value" />
  105.  
  106. </android.support.constraint.ConstraintLayout>
  107.  
  108. android:gravity="center_horizontal"
  109.  
  110. android:layout_width="wrap_content"
Add Comment
Please, Sign In to add comment