d677f9442197e00d9da32399c9a5071a3cff23dd.svn-base 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout 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:orientation="vertical">
  8. <eVVM.apk.widget.RoundHeadbgRectLayout
  9. android:id="@+id/my_headbg"
  10. android:layout_width="360dp"
  11. android:layout_height="220dp"
  12. app:arcHeight="50dp"
  13. app:bgColor="#5680FA">
  14. </eVVM.apk.widget.RoundHeadbgRectLayout>
  15. <ImageView
  16. android:id="@+id/my_img_head"
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:layout_centerHorizontal="true"
  20. android:layout_marginTop="55dp"
  21. android:src="@mipmap/iv_my_head" />
  22. <TextView
  23. android:id="@+id/my_tv_name"
  24. android:layout_width="wrap_content"
  25. android:layout_height="wrap_content"
  26. android:layout_below="@id/my_img_head"
  27. android:layout_centerHorizontal="true"
  28. android:layout_marginTop="10dp"
  29. android:text="@string/app_name"
  30. android:textColor="@color/white" />
  31. <LinearLayout
  32. android:id="@+id/my_select_list"
  33. android:layout_width="wrap_content"
  34. android:layout_height="wrap_content"
  35. android:layout_below="@id/my_headbg"
  36. android:layout_marginLeft="9.6dp"
  37. android:layout_marginRight="9.6dp"
  38. android:orientation="vertical">
  39. <com.hjq.widget.SettingBar
  40. android:id="@+id/my_sb_information"
  41. android:layout_width="match_parent"
  42. android:layout_height="wrap_content"
  43. android:layout_marginTop="@dimen/space_24"
  44. app:bar_leftIcon="@mipmap/iv_my_information"
  45. app:bar_leftText="@string/setting_information"
  46. app:bar_rightIcon="@mipmap/ico_go_black">
  47. </com.hjq.widget.SettingBar>
  48. <com.hjq.widget.SettingBar
  49. android:id="@+id/sb_setting_explain"
  50. android:layout_width="match_parent"
  51. android:layout_height="wrap_content"
  52. android:layout_marginTop="@dimen/space_24"
  53. app:bar_leftIcon="@mipmap/iv_my_explain"
  54. app:bar_leftText="@string/setting_explain"
  55. app:bar_rightIcon="@mipmap/ico_go_black">
  56. </com.hjq.widget.SettingBar>
  57. <com.hjq.widget.SettingBar
  58. android:id="@+id/sb_setting_about"
  59. android:layout_width="match_parent"
  60. android:layout_height="wrap_content"
  61. android:layout_marginTop="@dimen/space_24"
  62. app:bar_leftIcon="@mipmap/iv_my_about"
  63. app:bar_leftText="@string/setting_about"
  64. app:bar_rightIcon="@mipmap/ico_go_black">
  65. </com.hjq.widget.SettingBar>
  66. </LinearLayout>
  67. <Button
  68. android:id="@+id/my_btn_exit"
  69. android:layout_width="283dp"
  70. android:layout_height="48dp"
  71. android:layout_below="@id/my_select_list"
  72. android:layout_centerHorizontal="true"
  73. android:layout_marginTop="38.4dp"
  74. android:background="@drawable/round_btn"
  75. android:text="@string/setting_exit"
  76. android:textSize="15.36sp" />
  77. </RelativeLayout>