fg_mine_layout.xml 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ScrollView 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:overScrollMode="never"
  8. android:scrollbars="none">
  9. <androidx.constraintlayout.widget.ConstraintLayout
  10. android:layout_width="match_parent"
  11. android:layout_height="wrap_content"
  12. android:paddingBottom="12dp">
  13. <View
  14. android:id="@+id/view_top_white_bg"
  15. android:layout_width="match_parent"
  16. android:layout_height="0dp"
  17. android:background="@color/white"
  18. app:layout_constraintBottom_toBottomOf="@+id/cs_class_info"
  19. app:layout_constraintTop_toTopOf="parent" />
  20. <ImageView
  21. android:id="@+id/iv_top_bg"
  22. android:layout_width="match_parent"
  23. android:layout_height="0dp"
  24. android:adjustViewBounds="true"
  25. android:src="@drawable/jg_bg_mine_top"
  26. app:layout_constraintLeft_toLeftOf="parent"
  27. app:layout_constraintTop_toTopOf="parent" />
  28. <ImageView
  29. android:id="@+id/iv_top_bg2"
  30. android:layout_width="wrap_content"
  31. android:layout_height="wrap_content"
  32. android:layout_marginTop="19dp"
  33. android:src="@drawable/jg_icon_mine_top2"
  34. app:layout_constraintLeft_toLeftOf="parent"
  35. app:layout_constraintTop_toTopOf="parent" />
  36. <ImageView
  37. android:id="@+id/iv_top_bg3"
  38. android:layout_width="wrap_content"
  39. android:layout_height="wrap_content"
  40. android:src="@drawable/jg_icon_mine_top3"
  41. app:layout_constraintRight_toRightOf="parent"
  42. app:layout_constraintTop_toTopOf="parent" />
  43. <View
  44. android:id="@+id/view_status_bar"
  45. android:layout_width="match_parent"
  46. android:layout_height="1px"
  47. app:layout_constraintTop_toTopOf="parent" />
  48. <ImageView
  49. android:id="@+id/iv_setting"
  50. android:layout_width="wrap_content"
  51. android:layout_height="wrap_content"
  52. android:layout_marginTop="4dp"
  53. android:padding="16dp"
  54. android:src="@drawable/jg_icon_setting"
  55. app:layout_constraintRight_toRightOf="parent"
  56. app:layout_constraintTop_toBottomOf="@+id/view_status_bar" />
  57. <de.hdodenhof.circleimageview.CircleImageView
  58. android:id="@+id/iv_avatar"
  59. android:layout_width="68dp"
  60. android:layout_height="68dp"
  61. android:layout_marginStart="15dp"
  62. android:layout_marginTop="44dp"
  63. android:src="@drawable/icon_default_head"
  64. app:civ_border_color="@color/white"
  65. app:civ_border_width="2dp"
  66. app:layout_constraintLeft_toLeftOf="parent"
  67. app:layout_constraintTop_toBottomOf="@+id/view_status_bar" />
  68. <TextView
  69. android:id="@+id/tv_nickName"
  70. android:layout_width="0dp"
  71. android:layout_height="wrap_content"
  72. android:layout_marginStart="14dp"
  73. android:ellipsize="end"
  74. android:includeFontPadding="false"
  75. android:maxLines="1"
  76. android:textColor="@color/color_333333"
  77. android:textSize="@dimen/sp_20"
  78. android:textStyle="bold"
  79. app:layout_constraintBottom_toTopOf="@+id/fl_subject"
  80. app:layout_constraintHorizontal_bias="0"
  81. app:layout_constraintHorizontal_chainStyle="packed"
  82. app:layout_constraintLeft_toRightOf="@+id/iv_avatar"
  83. app:layout_constraintRight_toLeftOf="@+id/iv_vip_tag"
  84. app:layout_constraintTop_toTopOf="@+id/iv_avatar"
  85. app:layout_constraintVertical_chainStyle="packed"
  86. app:layout_constraintWidth_default="wrap"
  87. tools:text="宋小泽" />
  88. <FrameLayout
  89. android:id="@+id/fl_subject"
  90. android:layout_width="wrap_content"
  91. android:layout_height="19dp"
  92. android:layout_marginTop="6dp"
  93. android:paddingStart="7dp"
  94. android:paddingEnd="7dp"
  95. android:background="@drawable/shape_4dffffff_border_white_10dp"
  96. app:layout_constraintBottom_toBottomOf="@+id/iv_avatar"
  97. app:layout_constraintLeft_toLeftOf="@+id/tv_nickName"
  98. app:layout_constraintTop_toBottomOf="@+id/tv_nickName">
  99. <ImageView
  100. android:layout_width="wrap_content"
  101. android:layout_height="wrap_content"
  102. android:layout_gravity="center_vertical"
  103. android:src="@drawable/jg_icon_subject_tag" />
  104. <TextView
  105. android:id="@+id/tv_subject_name"
  106. android:layout_width="wrap_content"
  107. android:layout_height="wrap_content"
  108. android:layout_gravity="center_vertical"
  109. android:layout_marginStart="17dp"
  110. android:includeFontPadding="false"
  111. android:textColor="@color/color_fe2451"
  112. android:textSize="@dimen/sp_12"
  113. tools:text="长笛" />
  114. </FrameLayout>
  115. <ImageView
  116. android:id="@+id/iv_vip_tag"
  117. android:layout_width="wrap_content"
  118. android:layout_height="wrap_content"
  119. android:layout_marginStart="6dp"
  120. android:layout_marginEnd="13dp"
  121. android:src="@drawable/jg_icon_vip_no_open"
  122. app:layout_constraintBottom_toBottomOf="@+id/tv_nickName"
  123. app:layout_constraintLeft_toRightOf="@+id/tv_nickName"
  124. app:layout_constraintRight_toRightOf="parent"
  125. app:layout_constraintTop_toTopOf="@+id/tv_nickName" />
  126. <androidx.constraintlayout.widget.ConstraintLayout
  127. android:id="@+id/cs_class_info"
  128. android:layout_width="match_parent"
  129. android:layout_height="wrap_content"
  130. android:layout_marginTop="27dp"
  131. android:paddingBottom="15dp"
  132. app:layout_constraintLeft_toLeftOf="parent"
  133. app:layout_constraintTop_toBottomOf="@+id/iv_avatar">
  134. <View
  135. android:id="@+id/view_class_num"
  136. android:layout_width="0dp"
  137. android:layout_height="0dp"
  138. android:layout_marginStart="13dp"
  139. android:layout_marginBottom="12dp"
  140. android:background="@drawable/shape_ffecec_10dp"
  141. app:layout_constraintDimensionRatio="h,17:7"
  142. app:layout_constraintLeft_toLeftOf="parent"
  143. app:layout_constraintRight_toLeftOf="@+id/view_student_num"
  144. app:layout_constraintTop_toTopOf="parent" />
  145. <View
  146. android:id="@+id/view_student_num"
  147. android:layout_width="0dp"
  148. android:layout_height="0dp"
  149. android:layout_marginStart="9dp"
  150. android:layout_marginEnd="13dp"
  151. android:background="@drawable/shape_fff2e2_10dp"
  152. app:layout_constraintBottom_toBottomOf="@+id/view_class_num"
  153. app:layout_constraintLeft_toRightOf="@+id/view_class_num"
  154. app:layout_constraintRight_toRightOf="parent"
  155. app:layout_constraintTop_toTopOf="@+id/view_class_num" />
  156. <ImageView
  157. android:id="@+id/iv_class_num_tag"
  158. android:layout_width="wrap_content"
  159. android:layout_height="0dp"
  160. android:adjustViewBounds="true"
  161. android:src="@drawable/icon_mine_class_num_tag"
  162. app:layout_constraintBottom_toBottomOf="@+id/view_class_num"
  163. app:layout_constraintRight_toRightOf="@+id/view_class_num"
  164. app:layout_constraintTop_toTopOf="@+id/view_class_num" />
  165. <ImageView
  166. android:id="@+id/iv_stu_num_tag"
  167. android:layout_width="wrap_content"
  168. android:layout_height="0dp"
  169. android:adjustViewBounds="true"
  170. android:src="@drawable/icon_mine_stu_num_tag"
  171. app:layout_constraintBottom_toBottomOf="@+id/view_student_num"
  172. app:layout_constraintRight_toRightOf="@+id/view_student_num"
  173. app:layout_constraintTop_toTopOf="@+id/view_student_num" />
  174. <ImageView
  175. android:layout_width="wrap_content"
  176. android:layout_height="wrap_content"
  177. android:src="@drawable/jg_mine_prctice_tools"
  178. app:layout_constraintRight_toRightOf="@+id/view_student_num"
  179. app:layout_constraintTop_toTopOf="@+id/view_student_num" />
  180. <ImageView
  181. android:id="@+id/iv_vip_title"
  182. android:layout_width="wrap_content"
  183. android:layout_height="wrap_content"
  184. android:layout_marginStart="10dp"
  185. android:layout_marginTop="19dp"
  186. android:src="@drawable/jg_vip_title"
  187. app:layout_constraintLeft_toLeftOf="@+id/view_class_num"
  188. app:layout_constraintTop_toTopOf="@+id/view_class_num" />
  189. <View
  190. android:id="@+id/view_arrow_bg"
  191. android:layout_width="14dp"
  192. android:layout_height="14dp"
  193. android:layout_marginStart="5dp"
  194. android:background="@drawable/shape_ee9d9d_circle"
  195. app:layout_constraintBottom_toBottomOf="@+id/iv_vip_title"
  196. app:layout_constraintLeft_toRightOf="@+id/iv_vip_title"
  197. app:layout_constraintTop_toTopOf="@+id/iv_vip_title" />
  198. <ImageView
  199. android:layout_width="wrap_content"
  200. android:layout_height="wrap_content"
  201. android:src="@drawable/jg_icon_arrow_right_white"
  202. app:layout_constraintBottom_toBottomOf="@+id/view_arrow_bg"
  203. app:layout_constraintLeft_toLeftOf="@+id/view_arrow_bg"
  204. app:layout_constraintRight_toRightOf="@+id/view_arrow_bg"
  205. app:layout_constraintTop_toTopOf="@+id/view_arrow_bg" />
  206. <TextView
  207. android:id="@+id/tv_vip_status"
  208. android:layout_width="0dp"
  209. android:layout_height="wrap_content"
  210. android:gravity="center"
  211. android:includeFontPadding="false"
  212. android:text="暂未开通"
  213. android:textColor="@color/color_777777"
  214. android:textSize="@dimen/sp_12"
  215. app:layout_constraintBottom_toBottomOf="@+id/view_class_num"
  216. app:layout_constraintLeft_toLeftOf="@+id/iv_vip_title"
  217. app:layout_constraintTop_toBottomOf="@+id/iv_vip_title" />
  218. <ImageView
  219. android:id="@+id/iv_train_tools_title"
  220. android:layout_width="wrap_content"
  221. android:layout_height="wrap_content"
  222. android:layout_marginStart="10dp"
  223. android:layout_marginTop="19dp"
  224. android:src="@drawable/jg_train_tools_title"
  225. app:layout_constraintLeft_toLeftOf="@+id/view_student_num"
  226. app:layout_constraintTop_toTopOf="@+id/view_student_num" />
  227. <View
  228. android:id="@+id/view_arrow_bg2"
  229. android:layout_width="14dp"
  230. android:layout_height="14dp"
  231. android:layout_marginStart="5dp"
  232. android:background="@drawable/shape_f1c68c_circle"
  233. app:layout_constraintBottom_toBottomOf="@+id/iv_train_tools_title"
  234. app:layout_constraintLeft_toRightOf="@+id/iv_train_tools_title"
  235. app:layout_constraintTop_toTopOf="@+id/iv_train_tools_title" />
  236. <ImageView
  237. android:layout_width="wrap_content"
  238. android:layout_height="wrap_content"
  239. android:src="@drawable/jg_icon_arrow_right_white"
  240. app:layout_constraintBottom_toBottomOf="@+id/view_arrow_bg2"
  241. app:layout_constraintLeft_toLeftOf="@+id/view_arrow_bg2"
  242. app:layout_constraintRight_toRightOf="@+id/view_arrow_bg2"
  243. app:layout_constraintTop_toTopOf="@+id/view_arrow_bg2" />
  244. <TextView
  245. android:id="@+id/tv_tools_limit_time"
  246. android:layout_width="0dp"
  247. android:layout_height="wrap_content"
  248. android:gravity="center"
  249. android:includeFontPadding="false"
  250. android:textColor="@color/color_777777"
  251. android:textSize="@dimen/sp_12"
  252. app:layout_constraintBottom_toBottomOf="@+id/view_student_num"
  253. app:layout_constraintLeft_toLeftOf="@+id/iv_train_tools_title"
  254. app:layout_constraintTop_toBottomOf="@+id/iv_train_tools_title"
  255. tools:text="至2023-07-16" />
  256. </androidx.constraintlayout.widget.ConstraintLayout>
  257. <View
  258. android:id="@+id/view_help_point"
  259. android:layout_width="1px"
  260. android:layout_height="1px"
  261. android:layout_marginStart="8dp"
  262. android:layout_marginBottom="10dp"
  263. app:layout_constraintBottom_toTopOf="@+id/cs_class_info"
  264. app:layout_constraintLeft_toLeftOf="@+id/cs_class_info"
  265. app:layout_constraintRight_toRightOf="@+id/cs_class_info" />
  266. <ImageView
  267. android:layout_width="wrap_content"
  268. android:layout_height="wrap_content"
  269. android:src="@drawable/jg_icon_vip_tag2"
  270. app:layout_constraintRight_toLeftOf="@+id/view_help_point"
  271. app:layout_constraintTop_toTopOf="@+id/view_help_point" />
  272. <androidx.constraintlayout.widget.ConstraintLayout
  273. android:id="@+id/cs_common_function"
  274. android:layout_width="match_parent"
  275. android:layout_height="wrap_content"
  276. android:layout_marginStart="13dp"
  277. android:layout_marginTop="12dp"
  278. android:layout_marginEnd="13dp"
  279. android:background="@drawable/shape_10dp_white"
  280. android:paddingBottom="20dp"
  281. app:layout_constraintTop_toBottomOf="@+id/view_top_white_bg">
  282. <TextView
  283. android:id="@+id/tv_common_function"
  284. android:layout_width="wrap_content"
  285. android:layout_height="wrap_content"
  286. android:includeFontPadding="false"
  287. android:paddingStart="24dp"
  288. android:paddingTop="15dp"
  289. android:text="常用功能"
  290. android:textColor="@color/color_333333"
  291. android:textSize="@dimen/sp_16"
  292. android:textStyle="bold"
  293. android:visibility="visible"
  294. app:layout_constraintLeft_toLeftOf="parent"
  295. app:layout_constraintTop_toTopOf="parent" />
  296. <TextView
  297. android:id="@+id/tv_mine_track_list"
  298. android:layout_width="wrap_content"
  299. android:layout_height="wrap_content"
  300. android:layout_marginStart="11dp"
  301. android:layout_marginTop="14dp"
  302. android:drawableTop="@drawable/jg_mine_track_list"
  303. android:drawablePadding="@dimen/dp_4"
  304. android:includeFontPadding="false"
  305. android:text="我的曲库"
  306. android:textColor="@color/color_333333"
  307. android:textSize="@dimen/sp_12"
  308. app:layout_constraintHorizontal_chainStyle="spread_inside"
  309. app:layout_constraintHorizontal_weight="1"
  310. app:layout_constraintLeft_toLeftOf="parent"
  311. app:layout_constraintRight_toLeftOf="@+id/tv_practice_info"
  312. app:layout_constraintTop_toBottomOf="@+id/tv_common_function" />
  313. <TextView
  314. android:id="@+id/tv_practice_info"
  315. android:layout_width="wrap_content"
  316. android:layout_height="wrap_content"
  317. android:drawableTop="@drawable/jg_mine_prctice_info"
  318. android:drawablePadding="@dimen/dp_4"
  319. android:includeFontPadding="false"
  320. android:text="练习统计"
  321. android:textColor="@color/color_333333"
  322. android:textSize="@dimen/sp_12"
  323. app:layout_constraintHorizontal_chainStyle="spread_inside"
  324. app:layout_constraintHorizontal_weight="1"
  325. app:layout_constraintLeft_toRightOf="@+id/tv_mine_track_list"
  326. app:layout_constraintRight_toLeftOf="@+id/tv_order_info"
  327. app:layout_constraintTop_toTopOf="@+id/tv_mine_track_list" />
  328. <TextView
  329. android:id="@+id/tv_order_info"
  330. android:layout_width="wrap_content"
  331. android:layout_height="wrap_content"
  332. android:drawableTop="@drawable/jg_mine_order_info"
  333. android:drawablePadding="@dimen/dp_4"
  334. android:includeFontPadding="false"
  335. android:text="订单信息"
  336. android:textColor="@color/color_333333"
  337. android:textSize="@dimen/sp_12"
  338. app:layout_constraintHorizontal_weight="1"
  339. app:layout_constraintLeft_toRightOf="@+id/tv_practice_info"
  340. app:layout_constraintRight_toLeftOf="@+id/tv_rank_board"
  341. app:layout_constraintTop_toTopOf="@+id/tv_mine_track_list" />
  342. <TextView
  343. android:id="@+id/tv_rank_board"
  344. android:layout_width="wrap_content"
  345. android:layout_height="wrap_content"
  346. android:drawableTop="@drawable/jg_mine_rank_board"
  347. android:drawablePadding="@dimen/dp_4"
  348. android:includeFontPadding="false"
  349. android:text="排行榜"
  350. android:textColor="@color/color_333333"
  351. android:textSize="@dimen/sp_12"
  352. app:layout_constraintHorizontal_weight="1"
  353. app:layout_constraintLeft_toRightOf="@+id/tv_order_info"
  354. app:layout_constraintRight_toLeftOf="@+id/tv_activation_code"
  355. app:layout_constraintTop_toTopOf="@+id/tv_mine_track_list" />
  356. <TextView
  357. android:id="@+id/tv_activation_code"
  358. android:layout_width="wrap_content"
  359. android:layout_height="wrap_content"
  360. android:layout_marginEnd="11dp"
  361. android:drawableTop="@drawable/jg_mine_activation_code"
  362. android:drawablePadding="@dimen/dp_4"
  363. android:includeFontPadding="false"
  364. android:text="激活码"
  365. android:textColor="@color/color_333333"
  366. android:textSize="@dimen/sp_12"
  367. app:layout_constraintHorizontal_weight="1"
  368. app:layout_constraintLeft_toRightOf="@+id/tv_rank_board"
  369. app:layout_constraintRight_toRightOf="parent"
  370. app:layout_constraintTop_toTopOf="@+id/tv_mine_track_list" />
  371. </androidx.constraintlayout.widget.ConstraintLayout>
  372. <androidx.constraintlayout.widget.ConstraintLayout
  373. android:id="@+id/cs_other_info"
  374. android:layout_width="match_parent"
  375. android:layout_height="wrap_content"
  376. android:layout_marginStart="13dp"
  377. android:layout_marginTop="12dp"
  378. android:layout_marginEnd="13dp"
  379. android:background="@drawable/bg_white_10dp"
  380. android:paddingStart="13dp"
  381. android:paddingEnd="15dp"
  382. app:layout_constraintLeft_toLeftOf="parent"
  383. app:layout_constraintTop_toBottomOf="@+id/cs_common_function">
  384. <TextView
  385. android:id="@+id/tv_help_center"
  386. android:layout_width="match_parent"
  387. android:layout_height="58dp"
  388. android:drawableStart="@drawable/jg_mine_helpcenter"
  389. android:drawablePadding="8dp"
  390. android:gravity="center_vertical"
  391. android:text="帮助中心"
  392. android:textColor="@color/color_1a1a1a"
  393. android:textSize="@dimen/sp_16"
  394. app:layout_constraintLeft_toLeftOf="parent"
  395. app:layout_constraintTop_toTopOf="parent" />
  396. <ImageView
  397. android:layout_width="wrap_content"
  398. android:layout_height="wrap_content"
  399. android:src="@drawable/jg_icon_go_right"
  400. app:layout_constraintBottom_toBottomOf="@+id/tv_help_center"
  401. app:layout_constraintRight_toRightOf="@+id/tv_help_center"
  402. app:layout_constraintTop_toTopOf="@+id/tv_help_center" />
  403. <View
  404. android:id="@+id/view_line8"
  405. android:layout_width="match_parent"
  406. android:layout_height="1dp"
  407. android:background="@color/color_f2f2f2"
  408. app:layout_constraintLeft_toLeftOf="parent"
  409. app:layout_constraintTop_toBottomOf="@+id/tv_help_center" />
  410. <TextView
  411. android:id="@+id/tv_feed_back"
  412. android:layout_width="match_parent"
  413. android:layout_height="58dp"
  414. android:drawableStart="@drawable/jg_mine_feedback"
  415. android:drawablePadding="8dp"
  416. android:gravity="center_vertical"
  417. android:text="意见反馈"
  418. android:textColor="@color/color_1a1a1a"
  419. android:textSize="@dimen/sp_16"
  420. app:layout_constraintLeft_toLeftOf="parent"
  421. app:layout_constraintTop_toBottomOf="@+id/view_line8" />
  422. <ImageView
  423. android:layout_width="wrap_content"
  424. android:layout_height="wrap_content"
  425. android:src="@drawable/jg_icon_go_right"
  426. app:layout_constraintBottom_toBottomOf="@+id/tv_feed_back"
  427. app:layout_constraintRight_toRightOf="@+id/tv_feed_back"
  428. app:layout_constraintTop_toTopOf="@+id/tv_feed_back" />
  429. <View
  430. android:id="@+id/view_line10"
  431. android:layout_width="match_parent"
  432. android:layout_height="1dp"
  433. android:background="@color/color_f2f2f2"
  434. app:layout_constraintLeft_toLeftOf="parent"
  435. app:layout_constraintTop_toBottomOf="@+id/tv_feed_back" />
  436. <TextView
  437. android:id="@+id/tv_user_protocol"
  438. android:layout_width="match_parent"
  439. android:layout_height="58dp"
  440. android:drawableStart="@drawable/jg_user_protocol"
  441. android:drawablePadding="8dp"
  442. android:gravity="center_vertical"
  443. android:text="用户协议"
  444. android:textColor="@color/color_1a1a1a"
  445. android:textSize="@dimen/sp_16"
  446. app:layout_constraintLeft_toLeftOf="parent"
  447. app:layout_constraintTop_toBottomOf="@+id/view_line10" />
  448. <ImageView
  449. android:layout_width="wrap_content"
  450. android:layout_height="wrap_content"
  451. android:src="@drawable/jg_icon_go_right"
  452. app:layout_constraintBottom_toBottomOf="@+id/tv_user_protocol"
  453. app:layout_constraintRight_toRightOf="@+id/tv_user_protocol"
  454. app:layout_constraintTop_toTopOf="@+id/tv_user_protocol" />
  455. <View
  456. android:id="@+id/view_line11"
  457. android:layout_width="match_parent"
  458. android:layout_height="1dp"
  459. android:background="@color/color_f2f2f2"
  460. app:layout_constraintLeft_toLeftOf="parent"
  461. app:layout_constraintTop_toBottomOf="@+id/tv_user_protocol" />
  462. <TextView
  463. android:id="@+id/tv_privacy_policy"
  464. android:layout_width="match_parent"
  465. android:layout_height="58dp"
  466. android:drawableStart="@drawable/jg_user_protocol"
  467. android:drawablePadding="8dp"
  468. android:gravity="center_vertical"
  469. android:text="隐私政策"
  470. android:textColor="@color/color_1a1a1a"
  471. android:textSize="@dimen/sp_16"
  472. app:layout_constraintLeft_toLeftOf="parent"
  473. app:layout_constraintTop_toBottomOf="@+id/view_line11" />
  474. <ImageView
  475. android:layout_width="wrap_content"
  476. android:layout_height="wrap_content"
  477. android:src="@drawable/jg_icon_go_right"
  478. app:layout_constraintBottom_toBottomOf="@+id/tv_privacy_policy"
  479. app:layout_constraintRight_toRightOf="@+id/tv_privacy_policy"
  480. app:layout_constraintTop_toTopOf="@+id/tv_privacy_policy" />
  481. <View
  482. android:id="@+id/view_line9"
  483. android:layout_width="match_parent"
  484. android:layout_height="1dp"
  485. android:background="@color/color_f2f2f2"
  486. app:layout_constraintLeft_toLeftOf="parent"
  487. app:layout_constraintTop_toBottomOf="@+id/tv_privacy_policy" />
  488. <TextView
  489. android:id="@+id/tv_about_us"
  490. android:layout_width="match_parent"
  491. android:layout_height="58dp"
  492. android:drawableStart="@drawable/jg_mine_about"
  493. android:drawablePadding="8dp"
  494. android:gravity="center_vertical"
  495. android:text="关于我们"
  496. android:textColor="@color/color_1a1a1a"
  497. android:textSize="@dimen/sp_16"
  498. app:layout_constraintLeft_toLeftOf="parent"
  499. app:layout_constraintTop_toBottomOf="@+id/view_line9" />
  500. <ImageView
  501. android:layout_width="wrap_content"
  502. android:layout_height="wrap_content"
  503. android:src="@drawable/jg_icon_go_right"
  504. app:layout_constraintBottom_toBottomOf="@+id/tv_about_us"
  505. app:layout_constraintRight_toRightOf="@+id/tv_about_us"
  506. app:layout_constraintTop_toTopOf="@+id/tv_about_us" />
  507. </androidx.constraintlayout.widget.ConstraintLayout>
  508. </androidx.constraintlayout.widget.ConstraintLayout>
  509. </ScrollView>