hch
2025-07-02 aaa822b7f20f04d9ae00fff5efa6c2ec7e2cd83c
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
<?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:orientation="vertical">
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginLeft="50dp"
        android:layout_marginRight="50dp"
        android:layout_weight="1"
        android:gravity="center"
        android:orientation="vertical">
        <ImageView
            android:id="@+id/iv_logo"
            android:layout_width="96dp"
            android:layout_height="47dp"
            android:layout_gravity="center_horizontal" />
 
        <TextView
            android:id="@+id/tv_uesr_name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:layout_marginTop="32dp"
            android:gravity="center"
            android:text=""
            android:textColor="@color/ml_white"
            android:textSize="20dp" />
 
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerVertical="true"
            android:layout_marginTop="22dp"
            android:gravity="center"
            android:text="自动登录中"
            android:textColor="@color/milu_color_99"
            android:textSize="11dp" />
 
        <ImageView
            android:id="@+id/iv_aoto_ic"
            android:layout_width="90dp"
            android:layout_height="20dp"
            android:layout_marginTop="22dp" />
 
        <Button
            android:id="@+id/bt_switch_account"
            android:layout_width="match_parent"
            android:layout_height="39dp"
            android:layout_centerInParent="true"
            android:layout_marginTop="25dp"
            android:background="@drawable/ml_btn_login_red"
            android:gravity="center"
            android:text="切换账号"
            android:textColor="@color/milu_whitecolor"
            android:textSize="16sp" />
 
 
    </LinearLayout>
 
    <TextView
        android:id="@+id/tv_versionName"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_marginBottom="15dp"
        android:textColor="@color/milu_color_99"
        android:textSize="10sp" />
 
</LinearLayout>