lizhanwei
2020-04-20 7815e8d838fcd1bca3792671dc20dde77125a343
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
<?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="560dp"
        android:layout_height="254dp"
        android:layout_centerInParent="true">
        <RelativeLayout
            android:layout_width="280dp"
            android:layout_height="122dp"
            android:background="@drawable/sys_home_part_bg"
            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="280dp"
            android:layout_height="122dp"
 
            android:background="@drawable/sys_home_part_bg"
            android:layout_toRightOf="@+id/network_train"
            android:id="@+id/car_train"
            >
            <include
                android:layout_width="280dp"
                android:layout_height="122dp"
                android:layout_centerInParent="true"
                layout="@layout/layout_sys_home_part_train"/>
        </RelativeLayout>
        <RelativeLayout
            android:layout_width="280dp"
            android:layout_height="122dp"
            android:layout_marginTop="7dp"
            android:background="@drawable/sys_home_part_bg"
            android:id="@+id/system_setting"
            android:layout_below="@+id/network_train"
            >
            <include
                android:layout_width="280dp"
                android:layout_height="122dp"
                android:layout_centerInParent="true"
                layout="@layout/layout_sys_home_part_set"/>
        </RelativeLayout>
        <RelativeLayout
            android:layout_width="280dp"
            android:layout_height="122dp"
            android:background="@drawable/sys_home_part_bg"
            android:id="@+id/exit_sys"
            android:layout_marginTop="7dp"
            android:layout_toRightOf="@+id/system_setting"
            android:layout_below="@+id/network_train"
            >
            <include
                android:layout_width="280dp"
                android:layout_height="122dp"
                android:layout_centerInParent="true"
                layout="@layout/layout_sys_home_part_exit"/>
        </RelativeLayout>
        <safeluck.drive.evaluation.customview.CircleImageView
            android:layout_width="104dp"
            android:layout_height="104dp"
            android:src="@drawable/home_circle"
            app:civ_fill_color="#2B3140"
            app:civ_border_width="10dp"
            android:layout_centerInParent="true"
 
            />
 
    </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>