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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout    xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
    android:layout_height="match_parent" android:orientation="horizontal"
    android:background="@drawable/stu_score_bg">
<LinearLayout
  android:layout_width="0dp"
    android:layout_weight="4"
    android:layout_height="match_parent"
    android:paddingBottom="2dp"
 
    android:orientation="vertical"
 
>
    <RelativeLayout
        android:layout_width="match_parent"
        android:background="@drawable/stu_score_title"
 
        android:layout_height="38dp">
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="38dp"
            android:id="@+id/tv_item"
            android:gravity="center_vertical"
            android:textColor="#FFFFFF"
            android:layout_marginLeft="19dp"
            android:drawablePadding="5dp"
            android:textSize="@dimen/network_train_textsize22px"
            android:drawableLeft="@mipmap/duobianxing"
            android:text="项目列表"/>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_toRightOf="@+id/tv_item"
            android:gravity="center"
            android:layout_marginLeft="300dp"
            android:padding="10dp"
            android:id="@+id/tv_speed"
            android:textColor="#A1A1A3"
            android:text="@string/speed"/>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_toRightOf="@+id/tv_speed"
            android:id="@+id/tv_start_time"
            android:padding="10dp"
            android:gravity="center"
            android:textColor="#A1A1A3"
            android:layout_alignParentEnd="true"
            android:layout_marginRight="16dp"
            android:text="@string/begin_time"/>
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="结束考试"
            android:id="@+id/tv_stop"
            android:textColor="@android:color/white"
            android:padding="10dp"
android:visibility="gone"
            android:background="@drawable/btn_start_bg"
            android:layout_toRightOf="@+id/tv_pos"/>
    </RelativeLayout>
<include layout="@layout/layout_net_train_item" android:visibility="visible" android:id="@+id/changkao"/>
<include layout="@layout/layout_road_train" android:visibility="gone" android:id="@+id/lukao"/>
</LinearLayout>
 
</LinearLayout>