<?xml version="1.0" encoding="utf-8"?> 
 | 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
 | 
    android:layout_width="match_parent" 
 | 
    android:layout_height="match_parent" 
 | 
    android:background="#00ffffff" 
 | 
    android:gravity="center" 
 | 
    android:orientation="vertical"> 
 | 
  
 | 
    <LinearLayout 
 | 
        android:layout_width="match_parent" 
 | 
        android:layout_height="wrap_content" 
 | 
        android:layout_margin="@dimen/dialog_bg_margin" 
 | 
        android:padding="5dp" 
 | 
        android:background="@drawable/base_bg_dialog_top_stroke" 
 | 
        android:gravity="center" 
 | 
        android:orientation="vertical"> 
 | 
  
 | 
  
 | 
        <EditText 
 | 
            android:id="@+id/pw_et" 
 | 
            android:layout_width="match_parent" 
 | 
            android:layout_height="50dp" 
 | 
            android:layout_marginLeft="20dp" 
 | 
            android:layout_marginTop="20dp" 
 | 
            android:layout_marginRight="20dp" 
 | 
            android:background="@drawable/editbg" 
 | 
            android:hint="请输入管理密码" 
 | 
            android:inputType="textPassword" 
 | 
            android:paddingLeft="15dp" 
 | 
            android:textColor="#000000" /> 
 | 
  
 | 
        <View 
 | 
            android:layout_width="match_parent" 
 | 
            android:layout_height="2px" 
 | 
            android:layout_marginTop="20dp" 
 | 
            android:background="@color/line_bg" /> 
 | 
  
 | 
        <TextView 
 | 
            android:id="@+id/pw_ok" 
 | 
            android:layout_width="match_parent" 
 | 
            android:layout_height="@dimen/dialog_btn_height" 
 | 
            android:gravity="center" 
 | 
            android:text="确      认" 
 | 
            android:textColor="@color/dialog_btn" 
 | 
            android:textSize="@dimen/text_size" /> 
 | 
  
 | 
    </LinearLayout> 
 | 
  
 | 
</LinearLayout> 
 |