lizhanwei
2020-03-23 06b8160354c724f7730ababe4df504a2fd8e3c25
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
98
99
100
101
102
103
<?xml version="1.0" encoding="utf-8"?>
<ScrollView   xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto">
 
 
<TableLayout
 
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
 
    android:background="@color/train_item_bg"
    android:gravity="bottom">
 
 
 
<TableRow android:layout_width="wrap_content"
    android:id="@+id/first"
    android:layout_height="35dp">
    <Button android:id="@+id/btn_1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/straight_line"/>
    <Button android:id="@+id/btn_2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/add_subtract"/>
    <Button android:id="@+id/btn_3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/pull_over"/>
    <Button android:id="@+id/btn_4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/by_crossing"/>
    <Button android:id="@+id/btn_5"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/junction_left"/>
    <Button android:id="@+id/btn_6"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/junction_right"/>
</TableRow>
 
    <TableRow android:layout_width="wrap_content"
        android:id="@+id/second"
        android:layout_height="35dp">
 
    <Button android:id="@+id/btn_7"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/crosswalk"/>
        <Button android:id="@+id/btn_8"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/school_area"/>
 
    <Button android:id="@+id/btn_9"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/bus_area"/>
    <Button android:id="@+id/btn_10"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/turn_around"/>
    <Button android:id="@+id/btn_11"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:visibility="gone"
        android:text="@string/turn_around"/>
    <Button android:id="@+id/btn_12"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:visibility="gone"
        android:text="@string/lane_change"/>
        <Button android:id="@+id/btn_13"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:visibility="gone"
            android:text="@string/night_driving"/>
    </TableRow>
    <TableRow android:layout_width="wrap_content"
        android:visibility="gone"
        android:id="@+id/third"
        android:layout_height="35dp">
 
    <Button android:id="@+id/btn_14"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/junction_right"/>
    <Button android:id="@+id/btn_15"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/turn_around"/>
    <Button android:id="@+id/btn_16"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/pull_over"/>
    </TableRow>
</TableLayout>
</ScrollView>