Advertisement
Guest User

Untitled

a guest
Nov 18th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.89 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:background="@drawable/back_gradient"
  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="match_parent"
  8. android:orientation="vertical"
  9. android:padding="0dp">
  10.  
  11. <LinearLayout
  12. android:elevation="4dp"
  13. android:background="@color/lightColor"
  14. android:id = "@+id/Resume"
  15. android:layout_width="match_parent"
  16. android:layout_height="wrap_content"
  17. android:orientation="horizontal">
  18.  
  19. <ImageView
  20. android:id="@+id/imageView"
  21. android:layout_width="90dp"
  22. android:layout_height="90dp"
  23. android:padding="20dp"/>
  24.  
  25. <LinearLayout
  26. android:layout_width="match_parent"
  27. android:layout_height="match_parent"
  28. android:orientation="vertical">
  29.  
  30. <TextView
  31. android:id="@+id/name"
  32. android:layout_width="match_parent"
  33. android:layout_height="45dp"
  34. android:text="Евгений Шевляков"
  35. android:textSize="24sp"
  36. android:gravity="left|center"/>
  37.  
  38. <LinearLayout
  39. android:layout_width="match_parent"
  40. android:layout_height="wrap_content"
  41. android:orientation="horizontal">
  42.  
  43. <TextView
  44. android:id="@+id/totalDebtText"
  45. android:layout_width="100dp"
  46. android:layout_height="match_parent"
  47. android:gravity="left|center"
  48. android:text="Total debt:"
  49. android:textSize="20sp" />
  50.  
  51. <TextView
  52. android:id="@+id/totalDebtView"
  53. android:layout_width="match_parent"
  54. android:layout_height="match_parent"
  55. android:gravity="center"
  56. android:background="@drawable/rounded_corner"
  57. android:text="1200"
  58. android:textSize="20sp" />
  59.  
  60. </LinearLayout>
  61.  
  62.  
  63.  
  64. </LinearLayout>
  65. </LinearLayout>
  66. <RelativeLayout
  67. android:elevation="4dp"
  68. android:layout_marginTop="20dp"
  69. android:background="@color/lightColor"
  70. android:orientation="vertical"
  71. android:layout_below="@id/Resume"
  72. android:layout_width="match_parent"
  73. android:layout_height="wrap_content">
  74.  
  75.  
  76. <View
  77. android:id="@+id/ID"
  78. android:layout_width="match_parent"
  79. android:layout_height="wrap_content">
  80. <!-- <Button-->
  81. <!-- android:background="@color/lightColor"-->
  82.  
  83. <!-- android:layout_width="match_parent"-->
  84. <!-- android:layout_height="wrap_content"-->
  85. <!-- android:paddingLeft="60dp"-->
  86. <!-- android:gravity="left|center"-->
  87. <!-- android:text="ID: @10983797237" />-->
  88. <View
  89. android:layout_width="match_parent"
  90. android:layout_height="2dp"
  91. android:background="@color/darkColor"/>
  92.  
  93. </View>
  94. <Button
  95. android:background="@color/lightColor"
  96. android:layout_below="@id/ID"
  97. android:id="@+id/phone"
  98. android:layout_width="match_parent"
  99. android:layout_height="wrap_content"
  100. android:paddingLeft="60dp"
  101. android:gravity="left|center"
  102. android:text="Номер: +7(977)702-72-36" />
  103.  
  104. <Button
  105. android:background="@color/lightColor"
  106. android:layout_below="@id/phone"
  107. android:id="@+id/sound"
  108. android:layout_width="match_parent"
  109. android:layout_height="wrap_content"
  110. android:paddingLeft="60dp"
  111. android:gravity="left|center"
  112. android:text="Уведомления и звук" />
  113.  
  114. <Button
  115. android:background="@color/lightColor"
  116. android:layout_below="@id/sound"
  117. android:id="@+id/lang"
  118. android:layout_width="match_parent"
  119. android:layout_height="wrap_content"
  120. android:paddingLeft="60dp"
  121. android:gravity="left|center"
  122. android:text="Язык" />
  123.  
  124. <Button
  125. android:background="@color/lightColor"
  126. android:layout_below="@id/lang"
  127. android:id="@+id/help"
  128. android:layout_width="match_parent"
  129. android:layout_height="wrap_content"
  130. android:paddingLeft="60dp"
  131. android:gravity="left|center"
  132. android:text="Поддержка" />
  133.  
  134. </RelativeLayout>
  135. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement