Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2018
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.73 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ScrollView
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent">
  6. <RelativeLayout android:layout_width="match_parent"
  7. android:layout_height="match_parent"
  8. xmlns:android="http://schemas.android.com/apk/res/android">
  9.  
  10. <TextView
  11. android:id="@+id/tv_profile_title"
  12. android:layout_width="match_parent"
  13. android:layout_height="wrap_content"
  14. android:layout_marginStart="16dp"
  15. android:layout_marginTop="16dp"
  16. android:layout_alignParentTop="true"
  17. android:layout_alignParentStart="true"
  18. android:text="@string/settings_username"
  19. android:layout_marginBottom="4dp"
  20. style="@style/TextStyle.Small"/>
  21.  
  22. <TextView
  23. android:id="@+id/tv_username"
  24. android:layout_width="match_parent"
  25. android:layout_height="wrap_content"
  26. android:padding="16dp"
  27. android:textAlignment="textStart"
  28. android:text="Максим Вишня"
  29. style="@style/TextStyle"
  30. android:textColor="@color/black"
  31. android:background="@color/white"
  32. android:layout_below="@id/tv_profile_title"/>
  33.  
  34. <TextView
  35. android:id="@+id/tv_email"
  36. android:layout_width="match_parent"
  37. android:layout_height="wrap_content"
  38. android:padding="16dp"
  39. android:text="lounah@yandex.ru"
  40. android:textAlignment="textStart"
  41. android:background="@color/white"
  42. android:layout_below="@id/tv_username"
  43. style="@style/TextStyle"/>
  44.  
  45. <TextView
  46. android:id="@+id/tv_current_major_currency"
  47. android:layout_width="match_parent"
  48. android:layout_height="wrap_content"
  49. android:layout_below="@id/tv_email"
  50. android:layout_marginLeft="16dp"
  51. android:layout_marginTop="32dp"
  52. android:layout_marginBottom="4dp"
  53. android:text="@string/major_currency"
  54. style="@style/TextStyle.Small"/>
  55.  
  56. <TextView
  57. android:id="@+id/tv_major_currency"
  58. android:layout_width="match_parent"
  59. android:layout_height="wrap_content"
  60. android:padding="16dp"
  61. android:text="RUB"
  62. android:textAlignment="textStart"
  63. android:background="@color/white"
  64. android:layout_below="@id/tv_current_major_currency"
  65. style="@style/TextStyle.Large" />
  66.  
  67. <TextView
  68. android:id="@+id/tv_other_settings"
  69. android:layout_width="match_parent"
  70. android:layout_height="wrap_content"
  71. android:layout_below="@id/tv_major_currency"
  72. android:layout_marginLeft="16dp"
  73. android:layout_marginTop="32dp"
  74. android:layout_marginBottom="4dp"
  75. android:text="@string/other_settings"
  76. style="@style/TextStyle.Small"/>
  77.  
  78. <TextView
  79. android:id="@+id/tv_about"
  80. android:layout_width="match_parent"
  81. android:layout_height="wrap_content"
  82. android:padding="16dp"
  83. android:text="@string/about_application"
  84. android:textAlignment="textStart"
  85. android:textColor="@color/black"
  86. android:background="@color/white"
  87. android:layout_below="@id/tv_other_settings"
  88. style="@style/TextStyle"/>
  89.  
  90. <TextView
  91. android:id="@+id/tv_policy"
  92. android:layout_width="match_parent"
  93. android:layout_height="wrap_content"
  94. android:padding="16dp"
  95. android:text="@string/confidentiality_policy"
  96. android:textAlignment="textStart"
  97. android:textColor="@color/black"
  98. android:background="@color/white"
  99. android:layout_below="@id/tv_about"
  100. style="@style/TextStyle"/>
  101. </RelativeLayout>
  102. </ScrollView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement