mine_account_and_security_activity.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. android:orientation="vertical"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:background="@color/grey_light_light_light">
  8. <android.support.design.widget.AppBarLayout
  9. android:layout_width="match_parent"
  10. android:layout_height="wrap_content">
  11. <com.shuishuo.app.common.views.BaseToolbar
  12. android:id="@id/toolbar"
  13. android:layout_width="match_parent"
  14. android:layout_height="@dimen/action_bar_height"
  15. android:title="账户与安全"
  16. app:left_text="返回"/>
  17. </android.support.design.widget.AppBarLayout>
  18. <LinearLayout
  19. android:layout_width="match_parent"
  20. android:layout_height="wrap_content"
  21. android:padding="16dp"
  22. android:orientation="horizontal"
  23. android:gravity="center_vertical"
  24. android:background="@color/white">
  25. <TextView
  26. android:layout_weight="7"
  27. android:layout_width="wrap_content"
  28. android:layout_height="wrap_content"
  29. android:text="谁说号"
  30. android:textSize="18sp"/>
  31. <TextView
  32. android:id="@+id/mine_account_and_security_id_TV"
  33. android:layout_weight="1"
  34. android:layout_width="wrap_content"
  35. android:layout_height="wrap_content"
  36. android:text="谁说号ID"
  37. android:textSize="18sp"
  38. android:textColor="@color/grey_light"
  39. android:gravity="center"/>
  40. <ImageView
  41. android:layout_width="wrap_content"
  42. android:layout_height="wrap_content"
  43. android:src="@drawable/right_arrow"/>
  44. </LinearLayout>
  45. <View
  46. android:layout_width="match_parent"
  47. android:layout_height="1dp"
  48. android:background="@color/grey_light"/>
  49. <LinearLayout
  50. android:layout_width="match_parent"
  51. android:layout_height="wrap_content"
  52. android:padding="16dp"
  53. android:orientation="horizontal"
  54. android:gravity="center_vertical"
  55. android:background="@color/white">
  56. <TextView
  57. android:layout_weight="7"
  58. android:layout_width="wrap_content"
  59. android:layout_height="wrap_content"
  60. android:text="手机号"
  61. android:textSize="18sp"/>
  62. <TextView
  63. android:id="@+id/mine_account_and_security_mobile_TV"
  64. android:layout_weight="1"
  65. android:layout_width="wrap_content"
  66. android:layout_height="wrap_content"
  67. android:text="12345678901"
  68. android:textSize="18sp"
  69. android:textColor="@color/grey_light"
  70. android:gravity="center"/>
  71. <ImageView
  72. android:layout_width="wrap_content"
  73. android:layout_height="wrap_content"
  74. android:src="@drawable/right_arrow"/>
  75. </LinearLayout>
  76. <View
  77. android:layout_width="match_parent"
  78. android:layout_height="1dp"
  79. android:background="@color/grey_light"/>
  80. <LinearLayout
  81. android:id="@+id/mine_account_and_security_change_pwd_layout"
  82. android:layout_width="match_parent"
  83. android:layout_height="wrap_content"
  84. android:padding="16dp"
  85. android:orientation="horizontal"
  86. android:gravity="center_vertical"
  87. android:background="@color/white"
  88. android:layout_marginTop="16dp">
  89. <TextView
  90. android:layout_weight="7"
  91. android:layout_width="wrap_content"
  92. android:layout_height="wrap_content"
  93. android:text="密码修改"
  94. android:textSize="18sp"/>
  95. <ImageView
  96. android:layout_width="wrap_content"
  97. android:layout_height="wrap_content"
  98. android:src="@drawable/right_arrow"/>
  99. </LinearLayout>
  100. <View
  101. android:layout_width="match_parent"
  102. android:layout_height="1dp"
  103. android:background="@color/grey_light"/>
  104. </LinearLayout>