Advertisement
Guest User

Untitled

a guest
May 16th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.08 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. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:background="@color/background">
  8.  
  9. <include layout="@layout/playing_menu"/>
  10.  
  11. <RelativeLayout
  12. android:layout_width="match_parent"
  13. android:layout_height="50dp">
  14.  
  15. <de.hdodenhof.circleimageview.CircleImageView
  16. xmlns:app="http://schemas.android.com/apk/res-auto"
  17. android:id="@+id/profile_image"
  18. android:layout_width="50dp"
  19. android:layout_height="50dp"
  20. android:src="@mipmap/avt"
  21. android:layout_marginLeft="15dp"/>
  22.  
  23. <TextView
  24. style="@style/Menu_Style"
  25. android:layout_centerInParent="true"
  26. android:text="@string/home"
  27. android:id="@+id/home_text"/>
  28.  
  29. <ImageView
  30.  
  31. android:layout_width="36dp"
  32. android:layout_height="36dp"
  33. android:layout_alignParentEnd="true"
  34. android:layout_marginEnd="15dp"
  35. android:src="@mipmap/setting"
  36. android:id="@+id/setting_image"/>
  37.  
  38. </RelativeLayout>
  39.  
  40. <include layout="@layout/line"/>
  41.  
  42. <LinearLayout
  43. android:layout_width="360dp"
  44. android:layout_height="1dp"
  45. android:layout_marginStart="35dp"
  46. android:layout_marginTop="300dp"
  47. android:background="@color/line"
  48. android:alpha="0.5"
  49. app:layout_constraintStart_toStartOf="parent"
  50. app:layout_constraintTop_toTopOf="parent"/>
  51.  
  52.  
  53. /*-- BHX*/
  54.  
  55. <RelativeLayout
  56. android:layout_width="match_parent"
  57. android:layout_height="wrap_content"
  58. app:layout_constraintTop_toTopOf="parent"
  59. android:layout_marginTop="90dp"
  60. android:background="@mipmap/shadow">
  61.  
  62. <TextView
  63. android:id="@+id/bxh_song_text"
  64. style="@style/Title_Style"
  65. android:text="@string/song"
  66. android:layout_marginStart="25dp"
  67. android:layout_marginTop="15dp"/>
  68. <TextView
  69. style="@style/Title_Style"
  70. android:text="@string/album"
  71. android:layout_marginStart="25dp"
  72. android:layout_marginTop="230dp"
  73. android:id="@+id/bxh_album_text"/>
  74. <HorizontalScrollView
  75. android:layout_width="wrap_content"
  76. android:layout_height="wrap_content">
  77. <LinearLayout
  78. android:orientation="horizontal"
  79. android:layout_width="match_parent"
  80. android:layout_height="wrap_content"
  81. android:layout_below="@id/bxh_song_text">
  82.  
  83. <GridLayout
  84. android:orientation="horizontal"
  85. android:layout_width="wrap_content"
  86. android:layout_height="150dp">
  87.  
  88.  
  89. <ImageView
  90. android:id="@+id/bxh_song_image1"
  91. style="@style/BXH_ImageView"
  92. android:layout_column="0"
  93. android:layout_row="0"
  94. android:src="@mipmap/red" />
  95.  
  96. <ImageView
  97. android:id="@+id/bxh_song_image2"
  98. style="@style/BXH_ImageView"
  99. android:layout_column="1"
  100. android:layout_row="0"
  101. android:src="@mipmap/idgaf" />
  102.  
  103. <ImageView
  104. android:id="@+id/bhx_image3"
  105. style="@style/BXH_ImageView"
  106. android:layout_column="2"
  107. android:layout_row="0"
  108. android:src="@mipmap/divide" />
  109.  
  110. <TextView
  111. android:id="@+id/bhx_song_text1"
  112. style="@style/Menu_Style"
  113. android:layout_width="wrap_content"
  114. android:layout_height="wrap_content"
  115. android:layout_column="0"
  116. android:layout_marginStart="35dp"
  117. android:layout_row="2"
  118. android:text="@string/vietnam" />
  119.  
  120.  
  121. <TextView
  122. android:id="@+id/bhx_song_text2"
  123. style="@style/Menu_Style"
  124. android:layout_width="wrap_content"
  125. android:layout_height="wrap_content"
  126. android:layout_column="1"
  127. android:layout_marginStart="50dp"
  128. android:layout_row="2"
  129. android:text="@string/usuk" />
  130.  
  131. <TextView
  132. android:id="@+id/bhx_song_text3"
  133. style="@style/Menu_Style"
  134. android:layout_width="wrap_content"
  135. android:layout_height="wrap_content"
  136. android:layout_column="2"
  137. android:layout_marginStart="50dp"
  138. android:layout_row="2"
  139. android:text="@string/korea" />
  140.  
  141. </GridLayout>
  142.  
  143. </LinearLayout>
  144. </HorizontalScrollView>
  145.  
  146.  
  147. <LinearLayout
  148. android:orientation="horizontal"
  149. android:layout_width="match_parent"
  150. android:layout_height="wrap_content"
  151. android:layout_below="@id/bxh_album_text"
  152. android:layout_marginBottom="15dp">
  153. <HorizontalScrollView
  154. android:layout_width="wrap_content"
  155. android:layout_height="wrap_content">
  156. <GridLayout
  157. android:layout_width="wrap_content"
  158. android:layout_height="150dp"
  159. android:orientation="horizontal">
  160.  
  161. <ImageView
  162. android:id="@+id/bxh_album_image1"
  163. style="@style/BXH_ImageView"
  164. android:layout_column="0"
  165. android:layout_row="0"
  166. android:src="@mipmap/idgaf" />
  167.  
  168. <ImageView
  169. android:id="@+id/bxh_album_image2"
  170. style="@style/BXH_ImageView"
  171. android:layout_column="1"
  172. android:layout_row="0"
  173. android:src="@mipmap/divide" />
  174.  
  175. <ImageView
  176. android:id="@+id/bxh_album_image3"
  177. style="@style/BXH_ImageView"
  178. android:layout_column="2"
  179. android:layout_row="0"
  180. android:src="@mipmap/tnthmb" />
  181.  
  182. <TextView
  183. android:id="@+id/bxh_album_text1"
  184. style="@style/Menu_Style"
  185. android:layout_width="wrap_content"
  186. android:layout_height="wrap_content"
  187. android:layout_column="0"
  188. android:layout_marginLeft="35dp"
  189. android:layout_row="2"
  190. android:text="@string/vietnam" />
  191.  
  192. <TextView
  193. android:id="@+id/bxh_album_text2"
  194. style="@style/Menu_Style"
  195. android:layout_width="wrap_content"
  196. android:layout_height="wrap_content"
  197. android:layout_column="1"
  198. android:layout_marginLeft="50dp"
  199. android:layout_row="2"
  200. android:text="@string/usuk" />
  201.  
  202.  
  203. <TextView
  204. android:id="@+id/bxh_album_text3"
  205. style="@style/Menu_Style"
  206. android:layout_width="wrap_content"
  207. android:layout_height="wrap_content"
  208. android:layout_column="2"
  209. android:layout_marginLeft="50dp"
  210. android:layout_row="2"
  211. android:text="@string/korea" />
  212.  
  213. </GridLayout>
  214. </HorizontalScrollView>
  215. </LinearLayout>
  216.  
  217. </RelativeLayout>
  218.  
  219.  
  220.  
  221. </android.support.constraint.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement