activity_setting.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@color/EFEFEF"
  6. android:orientation="vertical" >
  7. <include layout="@layout/fragment_title" />
  8. <LinearLayout
  9. android:id="@+id/pushtag"
  10. android:layout_width="fill_parent"
  11. android:layout_height="60dp"
  12. android:layout_marginTop="20dp"
  13. android:background="@drawable/login_btn_selector"
  14. android:visibility="gone"
  15. android:orientation="horizontal" >
  16. <TextView
  17. android:layout_width="fill_parent"
  18. android:layout_height="fill_parent"
  19. android:layout_marginLeft="10dp"
  20. android:layout_weight="1"
  21. android:gravity="center_vertical"
  22. android:text="推送标签"
  23. android:textColor="@color/black"
  24. android:textSize="@dimen/textsize_15" />
  25. <ImageView
  26. android:layout_width="wrap_content"
  27. android:layout_height="wrap_content"
  28. android:src="@drawable/iv_right" />
  29. </LinearLayout>
  30. <LinearLayout
  31. android:id="@+id/modifyPassword"
  32. android:layout_width="fill_parent"
  33. android:layout_height="60dp"
  34. android:layout_marginTop="20dp"
  35. android:background="@drawable/login_btn_selector"
  36. android:orientation="horizontal" >
  37. <TextView
  38. android:layout_width="fill_parent"
  39. android:layout_height="fill_parent"
  40. android:layout_marginLeft="10dp"
  41. android:layout_weight="1"
  42. android:gravity="center_vertical"
  43. android:text="修改密码"
  44. android:textColor="@color/black"
  45. android:textSize="@dimen/textsize_15" />
  46. <ImageView
  47. android:layout_width="wrap_content"
  48. android:layout_height="wrap_content"
  49. android:src="@drawable/iv_right" />
  50. </LinearLayout>
  51. <LinearLayout
  52. android:id="@+id/qiehuanyonghu"
  53. android:layout_width="fill_parent"
  54. android:layout_height="60dp"
  55. android:layout_marginTop="20dp"
  56. android:background="@drawable/login_btn_selector"
  57. android:orientation="horizontal" >
  58. <TextView
  59. android:layout_width="fill_parent"
  60. android:layout_height="fill_parent"
  61. android:layout_marginLeft="10dp"
  62. android:layout_weight="1"
  63. android:gravity="center_vertical"
  64. android:text="切换用户"
  65. android:textColor="@color/black"
  66. android:textSize="@dimen/textsize_15" />
  67. <ImageView
  68. android:layout_width="wrap_content"
  69. android:layout_height="wrap_content"
  70. android:src="@drawable/iv_right" />
  71. </LinearLayout>
  72. <LinearLayout
  73. android:id="@+id/banbenxinxi"
  74. android:layout_width="fill_parent"
  75. android:layout_height="60dp"
  76. android:layout_marginTop="20dp"
  77. android:background="@drawable/login_btn_selector"
  78. android:orientation="horizontal" >
  79. <TextView
  80. android:layout_width="fill_parent"
  81. android:layout_height="fill_parent"
  82. android:layout_marginLeft="10dp"
  83. android:layout_weight="1"
  84. android:gravity="center_vertical"
  85. android:text="版本信息"
  86. android:textColor="@color/black"
  87. android:textSize="@dimen/textsize_15" />
  88. <ImageView
  89. android:layout_width="wrap_content"
  90. android:layout_height="wrap_content"
  91. android:src="@drawable/iv_right" />
  92. </LinearLayout>
  93. <LinearLayout
  94. android:id="@+id/tuichudenglu"
  95. android:layout_width="fill_parent"
  96. android:layout_height="60dp"
  97. android:layout_marginTop="20dp"
  98. android:background="@drawable/login_btn_selector"
  99. android:orientation="horizontal" >
  100. <TextView
  101. android:layout_width="fill_parent"
  102. android:layout_height="fill_parent"
  103. android:layout_marginLeft="10dp"
  104. android:layout_weight="1"
  105. android:gravity="center_vertical"
  106. android:text="退出登录"
  107. android:textColor="@color/black"
  108. android:textSize="@dimen/textsize_15" />
  109. <ImageView
  110. android:layout_width="wrap_content"
  111. android:layout_height="wrap_content"
  112. android:src="@drawable/iv_right" />
  113. </LinearLayout>
  114. </LinearLayout>