popup_window_update_pw.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:id="@+id/rl_popup_window"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. android:background="#8000" >
  7. <LinearLayout
  8. android:layout_width="331dp"
  9. android:layout_height="220dp"
  10. android:layout_centerInParent="true"
  11. android:background="@drawable/approve_opinion_popup_window_background"
  12. android:clickable="true"
  13. android:orientation="vertical" >
  14. <RelativeLayout
  15. android:layout_width="match_parent"
  16. android:layout_height="51dp" >
  17. <TextView
  18. android:id="@+id/tv_popup_window_title"
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:layout_centerHorizontal="true"
  22. android:layout_marginTop="12dp"
  23. android:text="密码修改"
  24. android:textColor="#000"
  25. android:textSize="16sp" />
  26. </RelativeLayout>
  27. <RelativeLayout
  28. android:layout_width="match_parent"
  29. android:layout_height="120dp" >
  30. <EditText
  31. android:id="@+id/et_popup_window_oldpw"
  32. android:layout_width="match_parent"
  33. android:layout_height="30dp"
  34. android:layout_marginLeft="20dp"
  35. android:layout_marginRight="20dp"
  36. android:layout_marginTop="5dp"
  37. android:background="@color/white"
  38. android:hint="原密码"
  39. android:inputType="textPassword"
  40. android:textColor="#000"
  41. android:textColorHint="#5000"
  42. android:textSize="14sp" />
  43. <EditText
  44. android:id="@+id/et_popup_window_newpw"
  45. android:layout_width="match_parent"
  46. android:layout_height="30dp"
  47. android:layout_below="@+id/et_popup_window_oldpw"
  48. android:layout_marginLeft="20dp"
  49. android:layout_marginRight="20dp"
  50. android:layout_marginTop="5dp"
  51. android:background="@color/white"
  52. android:hint="新密码"
  53. android:inputType="textPassword"
  54. android:textColor="#000"
  55. android:textColorHint="#5000"
  56. android:textSize="14sp" />
  57. <EditText
  58. android:id="@+id/et_popup_window_okpw"
  59. android:layout_width="match_parent"
  60. android:layout_height="30dp"
  61. android:layout_below="@+id/et_popup_window_newpw"
  62. android:layout_marginLeft="20dp"
  63. android:layout_marginRight="20dp"
  64. android:layout_marginTop="5dp"
  65. android:background="@color/white"
  66. android:hint="确认密码"
  67. android:inputType="textPassword"
  68. android:textColor="#000"
  69. android:textColorHint="#5000"
  70. android:textSize="14sp" />
  71. </RelativeLayout>
  72. <LinearLayout
  73. android:layout_width="match_parent"
  74. android:layout_height="match_parent"
  75. android:orientation="horizontal" >
  76. <RelativeLayout
  77. android:id="@+id/ll_ok"
  78. android:layout_width="0dp"
  79. android:layout_height="match_parent"
  80. android:layout_weight="1"
  81. android:clickable="true" >
  82. <TextView
  83. android:id="@+id/tv_popup_window_ok"
  84. android:layout_width="wrap_content"
  85. android:layout_height="wrap_content"
  86. android:layout_centerInParent="true"
  87. android:text="确定"
  88. android:textColor="#df00"
  89. android:textSize="14sp" />
  90. </RelativeLayout>
  91. <View
  92. android:layout_width="0.5dp"
  93. android:layout_height="match_parent"
  94. android:layout_marginTop="10dp"
  95. android:background="#1000" />
  96. <RelativeLayout
  97. android:id="@+id/ll_cancel"
  98. android:layout_width="0dp"
  99. android:layout_height="match_parent"
  100. android:layout_weight="1"
  101. android:clickable="true" >
  102. <TextView
  103. android:id="@+id/tv_popup_window_cancel"
  104. android:layout_width="wrap_content"
  105. android:layout_height="wrap_content"
  106. android:layout_centerInParent="true"
  107. android:text="取消"
  108. android:textColor="#000"
  109. android:textSize="14sp" />
  110. </RelativeLayout>
  111. </LinearLayout>
  112. </LinearLayout>
  113. </RelativeLayout>