lmw
2023-06-21 bd6a8872438a35d47821c5d5da7fe149e5fed3ab
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
 
    <ImageView
        android:id="@+id/iv_back_login"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@mipmap/bg_lab_login"
        app:layout_constraintTop_toTopOf="parent" />
 
    <TextView
        android:id="@+id/tv_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="OK出行司机"
        android:textColor="#ffffffff"
        android:textSize="40sp"
        android:layout_marginBottom="75dp"
        app:layout_constraintBottom_toTopOf="@+id/ll_center"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
         />
 
 
    <LinearLayout
        android:id="@+id/ll_center"
        android:layout_width="538dp"
        android:layout_height="362dp"
        android:background="@color/write"
        android:orientation="vertical"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">
 
        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="119dp"
            android:gravity="center"
            android:orientation="horizontal">
 
            <EditText
                android:id="@+id/et_number"
                android:layout_width="match_parent"
                android:layout_height="65dp"
                android:layout_centerInParent="true"
                android:layout_marginStart="88dp"
                android:layout_marginEnd="88dp"
                android:background="@drawable/bg_gray_4_line"
                android:hint="工号或从业资格证号"
                android:paddingStart="60dp"
                android:textColor="@color/black"
                android:textSize="30sp" />
 
            <View
                android:layout_width="30dp"
                android:layout_height="30dp"
                android:layout_centerVertical="true"
                android:layout_marginStart="105dp"
                android:background="@mipmap/slab_people" />
 
        </RelativeLayout>
 
        <TextView
            android:id="@+id/tv_login"
            android:layout_width="match_parent"
            android:layout_height="60dp"
            android:layout_marginStart="88dp"
            android:layout_marginTop="44dp"
            android:layout_marginEnd="88dp"
            android:layout_marginBottom="@dimen/dp_60"
            android:background="@drawable/bg_login"
            android:gravity="center"
            android:text="登录"
            android:textColor="#ffffffff"
            android:textSize="36sp" />
 
 
    </LinearLayout>
 
    <ImageView
        android:id="@+id/iv_icon"
        android:layout_width="150dp"
        android:layout_height="150dp"
        android:layout_marginTop="4dp"
        android:background="@mipmap/icon"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/tv_name" />
 
 
</androidx.constraintlayout.widget.ConstraintLayout>