mine_account_and_security_activity.xml 4.0 KB

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