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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/rl"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".ui.activity.MLLoginActivity"
    tools:ignore="MissingDefaultResource">
 
    <LinearLayout
        android:id="@+id/ll"
        android:layout_width="match_parent"
        android:layout_height="450dp"
        android:layout_alignParentBottom="true"
        android:background="@drawable/ml_activity_bg"
        android:onClick="onClick"
        android:orientation="horizontal"
        tools:ignore="OnClick">
 
        <FrameLayout
            android:id="@+id/fl"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
 
 
    </LinearLayout>
 
    <ImageView
        android:id="@+id/img_switch"
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:layout_centerVertical="true"
        android:padding="15dp"
        android:paddingBottom="10dp"
        android:paddingTop="10dp"
        android:src="@mipmap/ml_ic_switch_left_red"
        android:visibility="gone" />
 
    <ImageView
        android:id="@+id/img_emptyGuide"
        android:layout_width="wrap_content"
        android:layout_height="25dp"
        android:layout_above="@id/ll"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:layout_marginBottom="10dp"
        android:adjustViewBounds="true"
        android:src="@mipmap/ml_ic_empty_guide_port"
        android:visibility="gone" />
</RelativeLayout>