| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:id="@+id/rl_popup_window"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="#8000" >
- <LinearLayout
- android:layout_width="331dp"
- android:layout_height="220dp"
- android:layout_centerInParent="true"
- android:background="@drawable/approve_opinion_popup_window_background"
- android:clickable="true"
- android:orientation="vertical" >
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="51dp" >
- <TextView
- android:id="@+id/tv_popup_window_title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerHorizontal="true"
- android:layout_marginTop="12dp"
- android:text="密码修改"
- android:textColor="#000"
- android:textSize="16sp" />
- </RelativeLayout>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="120dp" >
- <EditText
- android:id="@+id/et_popup_window_oldpw"
- android:layout_width="match_parent"
- android:layout_height="30dp"
- android:layout_marginLeft="20dp"
- android:layout_marginRight="20dp"
- android:layout_marginTop="5dp"
- android:background="@color/white"
- android:hint="原密码"
- android:inputType="textPassword"
- android:textColor="#000"
- android:textColorHint="#5000"
- android:textSize="14sp" />
- <EditText
- android:id="@+id/et_popup_window_newpw"
- android:layout_width="match_parent"
- android:layout_height="30dp"
- android:layout_below="@+id/et_popup_window_oldpw"
- android:layout_marginLeft="20dp"
- android:layout_marginRight="20dp"
- android:layout_marginTop="5dp"
- android:background="@color/white"
- android:hint="新密码"
- android:inputType="textPassword"
- android:textColor="#000"
- android:textColorHint="#5000"
- android:textSize="14sp" />
- <EditText
- android:id="@+id/et_popup_window_okpw"
- android:layout_width="match_parent"
- android:layout_height="30dp"
- android:layout_below="@+id/et_popup_window_newpw"
- android:layout_marginLeft="20dp"
- android:layout_marginRight="20dp"
- android:layout_marginTop="5dp"
- android:background="@color/white"
- android:hint="确认密码"
- android:inputType="textPassword"
- android:textColor="#000"
- android:textColorHint="#5000"
- android:textSize="14sp" />
- </RelativeLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="horizontal" >
- <RelativeLayout
- android:id="@+id/ll_ok"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:clickable="true" >
- <TextView
- android:id="@+id/tv_popup_window_ok"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:text="确定"
- android:textColor="#df00"
- android:textSize="14sp" />
- </RelativeLayout>
- <View
- android:layout_width="0.5dp"
- android:layout_height="match_parent"
- android:layout_marginTop="10dp"
- android:background="#1000" />
- <RelativeLayout
- android:id="@+id/ll_cancel"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:clickable="true" >
- <TextView
- android:id="@+id/tv_popup_window_cancel"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:text="取消"
- android:textColor="#000"
- android:textSize="14sp" />
- </RelativeLayout>
- </LinearLayout>
- </LinearLayout>
- </RelativeLayout>
|