左晓为主开发手持机充值管理机
zuoxiao
2024-05-23 a00db87bf7b73761d965152c8faa88f2f95599fe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?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="#40000000"
    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>