activity_mine_general_setting.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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/bg_gray_f5"
  6. android:orientation="vertical">
  7. <LinearLayout
  8. android:id="@+id/ll_tips"
  9. android:layout_width="match_parent"
  10. android:layout_height="71dp"
  11. android:layout_marginTop="10dp"
  12. android:background="@color/white"
  13. android:gravity="center_vertical"
  14. android:orientation="horizontal"
  15. android:paddingLeft="20dp"
  16. android:paddingRight="20dp">
  17. <View
  18. android:layout_width="33dp"
  19. android:layout_height="33dp"
  20. android:background="@mipmap/ic_mine_tips" />
  21. <TextView
  22. android:layout_width="0dp"
  23. android:layout_height="wrap_content"
  24. android:layout_marginLeft="14dp"
  25. android:layout_weight="1"
  26. android:text="@string/mine_tips"
  27. android:textColor="@color/text_black"
  28. android:textSize="@dimen/px39_13sp" />
  29. <View
  30. android:layout_width="9dp"
  31. android:layout_height="14dp"
  32. android:background="@mipmap/ic_right_gray" />
  33. </LinearLayout>
  34. <LinearLayout
  35. android:id="@+id/ll_version"
  36. android:layout_width="match_parent"
  37. android:layout_height="71dp"
  38. android:layout_marginTop="2dp"
  39. android:background="@color/white"
  40. android:gravity="center_vertical"
  41. android:orientation="horizontal"
  42. android:paddingLeft="20dp"
  43. android:paddingRight="20dp">
  44. <View
  45. android:layout_width="33dp"
  46. android:layout_height="33dp"
  47. android:background="@mipmap/ic_mine_version" />
  48. <TextView
  49. android:layout_width="0dp"
  50. android:layout_height="wrap_content"
  51. android:layout_marginLeft="14dp"
  52. android:layout_weight="1"
  53. android:text="@string/mine_version"
  54. android:textColor="@color/text_black"
  55. android:textSize="@dimen/px39_13sp" />
  56. <View
  57. android:layout_width="9dp"
  58. android:layout_height="14dp"
  59. android:background="@mipmap/ic_right_gray" />
  60. </LinearLayout>
  61. <TextView
  62. android:id="@+id/tv_unregister"
  63. android:layout_width="match_parent"
  64. android:layout_height="48dp"
  65. android:layout_marginTop="13.5dp"
  66. android:background="@color/white"
  67. android:gravity="center"
  68. android:text="@string/unregister"
  69. android:textColor="@color/text_black"
  70. android:textSize="@dimen/px45_15sp" />
  71. </LinearLayout>