endian11
2019-11-25 19b98f99f5fb302863d96485d592974f00878cc7
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
97
<?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">
    <include android:id="@+id/tb"  layout="@layout/toolbar"/>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@+id/tb"
        android:orientation="horizontal"
        android:gravity="center"
        android:background="@color/home_bg_color">
        <LinearLayout
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:gravity="center"
            android:id="@+id/network_train"
            android:layout_weight="1"
            android:orientation="vertical">
            <safeluck.drive.evaluation.customview.CircleImageView
                style="@style/home_fragment_icon"
                app:civ_fill_color="@android:color/white"
                app:civ_border_width="15dp"
                app:civ_border_color="@android:color/white"
 
                android:src="@drawable/vehicle_network"
        />
            <TextView
                style="@style/home_fragment_text_sub"
                android:text="@string/vehicle_net"
      />
        </LinearLayout>
        <LinearLayout
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:gravity="center"
            android:layout_weight="1"
            android:id="@+id/car_train"
            android:orientation="vertical">
            <safeluck.drive.evaluation.customview.CircleImageView
 
                app:civ_fill_color="@android:color/white"
                app:civ_border_width="15dp"
                app:civ_border_color="@android:color/white"
                android:src="@drawable/wheel"
                style="@style/home_fragment_icon"/>
            <TextView
                style="@style/home_fragment_text_sub"
                android:text="@string/vehicle_train"
   />
        </LinearLayout>
        <LinearLayout
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:gravity="center"
            android:id="@+id/system_setting"
            android:layout_weight="1"
            android:orientation="vertical">
            <safeluck.drive.evaluation.customview.CircleImageView
                app:civ_fill_color="@android:color/white"
                app:civ_border_width="15dp"
                app:civ_border_color="@android:color/white"
                android:src="@drawable/setting"
                style="@style/home_fragment_icon"/>
            <TextView
                style="@style/home_fragment_text_sub"
                android:text="@string/setting"
              />
        </LinearLayout>
        <LinearLayout
            android:layout_width="100dp"
            android:layout_height="100dp"
            android:gravity="center"
            android:id="@+id/exit_sys"
            android:layout_weight="1"
            android:orientation="vertical">
            <safeluck.drive.evaluation.customview.CircleImageView
                app:civ_fill_color="@android:color/white"
                app:civ_border_width="15dp"
                app:civ_border_color="@android:color/white"
                android:src="@drawable/exit"
                style="@style/home_fragment_icon"/>
            <TextView
                style="@style/home_fragment_text_sub"
                android:text="@string/exit"
               />
        </LinearLayout>
    </LinearLayout>
    <TextView
        style="@style/home_fragment_text"
        android:text="@string/version_name"
        android:padding="10dp"
        android:textColor="@color/home_version_show"
        android:layout_alignParentBottom="true"
        android:layout_alignParentEnd="true"/>
</RelativeLayout>