lizhanwei
2020-08-03 4a936c7e646dabf5a4a8da6d46878bf83ff10e6a
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
104
105
106
107
<?xml version="1.0" encoding="utf-8"?>
 
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:lee="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginTop="@dimen/ui_margin_20dp">
    <TextView
        android:layout_width="114dp"
        android:layout_height="43dp"
        android:text="信号配置"
        android:textColor="#ffffffff"
        android:textSize="23sp"
        android:id="@+id/tvv"
        android:layout_alignParentStart="true"
        android:layout_marginLeft="20dp"
 
        />
    <Button
        android:layout_width="96dp"
        android:layout_height="35dp"
        android:layout_alignParentEnd="true"
        android:layout_marginRight="35dp"
        android:background="@drawable/btn_state_save"
        android:textColor="@android:color/white"
        android:textSize="@dimen/network_train_textsize24px"
        android:id="@+id/btn_save_signals"
        android:text="保存"/>
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:id="@+id/ll_container"
    android:background="@drawable/stu_score_bg"
    android:layout_below="@+id/btn_save_signals"
    android:layout_marginBottom="@dimen/ui_margin_25dp"
 
    >
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="25dp"
    android:layout_marginLeft="@dimen/ui_margin_10dp"
    android:layout_marginRight="10dp"
    android:orientation="horizontal"
    android:layout_column="8">
<TextView
    android:layout_width="0dp"
    android:layout_weight="1"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:textSize="15sp"
    android:textColor="#ff888995"
    android:text="物理通道"/>
    <TextView
        android:layout_width="0dp"
        android:layout_weight="1"
        android:textSize="15sp"
        android:textColor="#ff888995"
        android:gravity="center"
    android:layout_height="wrap_content"
    android:text="信号名称"/>
    <TextView
        android:layout_width="0dp"
        android:layout_weight="1"
    android:layout_height="wrap_content"
        android:gravity="center"
        android:textSize="15sp"
        android:textColor="#ff888995"
    android:text="高电平有效"/>
 
 
    <TextView
        android:layout_width="0dp"
        android:layout_weight="1"
    android:layout_height="wrap_content"
        android:gravity="center"
        android:textSize="15sp"
        android:textColor="#ff888995"
    android:text="物理通道"/>
    <TextView
        android:layout_width="0dp"
        android:layout_weight="1"
    android:layout_height="wrap_content"
        android:gravity="center"
        android:textSize="15sp"
        android:textColor="#ff888995"
    android:text="信号名称"/>
    <TextView
        android:layout_width="0dp"
        android:layout_weight="1"
    android:layout_height="wrap_content"
        android:textSize="15sp"
        android:textColor="#ff888995"
        android:gravity="center"
    android:text="高电平有效"/>
 
 
 
</LinearLayout>
    <ListView
        android:layout_width="match_parent"
        android:id="@+id/lv_signalconf"
        android:layout_height="match_parent"/>
</LinearLayout>
 
</RelativeLayout>