endian11
2021-01-19 b2fe9c4f073523284c671bf8895a8412cd269518
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto">
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center"
     >
        <RelativeLayout
            android:layout_width="558px"
            android:layout_height="244px"
            android:background="@mipmap/let_top"
            android:id="@+id/network_train"
            >
            <include
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_centerInParent="true"
                layout="@layout/layout_sys_home_part"/>
        </RelativeLayout>
        <RelativeLayout
            android:layout_width="512px"
            android:layout_height="244px"
            android:layout_marginLeft="-45px"
            android:background="@mipmap/right_top"
            android:layout_toRightOf="@+id/network_train"
            android:id="@+id/car_train"
            >
            <include
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_centerInParent="true"
                layout="@layout/layout_sys_home_part_train"/>
        </RelativeLayout>
        <RelativeLayout
            android:layout_width="512px"
            android:layout_height="244px"
            android:layout_marginTop="13px"
            android:background="@mipmap/left_bottom"
            android:id="@+id/system_setting"
            android:layout_below="@+id/network_train"
            >
            <include
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_centerInParent="true"
                layout="@layout/layout_sys_home_part_set"/>
        </RelativeLayout>
        <RelativeLayout
            android:layout_width="550px"
            android:layout_height="244px"
            android:background="@mipmap/right_bottom"
            android:id="@+id/exit_sys"
            android:layout_marginLeft="-37px"
            android:layout_marginTop="13px"
            android:layout_toRightOf="@+id/system_setting"
            android:layout_below="@+id/network_train"
            >
            <include
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_centerInParent="true"
                layout="@layout/layout_sys_home_part_exit"/>
        </RelativeLayout>
        <safeluck.drive.evaluation.customview.CircleImageView
            android:layout_width="208px"
            android:layout_height="208px"
            android:layout_marginLeft="411px"
            android:layout_marginTop="147px"
            app:civ_fill_color="#2A303F"
            android:src="@drawable/home_circle"
            />
 
    </RelativeLayout>
 
 
 
    <TextView
        style="@style/home_fragment_text"
        android:text="@string/version_name"
        android:padding="10dp"
        android:id="@+id/tv_app_version"
        android:textColor="@color/home_version_show"
        android:layout_alignParentBottom="true"
        android:layout_alignParentEnd="true"/>
</RelativeLayout>