yy1717
2020-08-13 2242a796345bceb301cf3e2094f2a4871cb81cb6
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
<?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="40dp"
    android:background="@drawable/stu_score_title"
>
<TextView
    android:layout_width="0dp"
    android:layout_weight="1"
    android:layout_height="match_parent"
    android:textColor="@android:color/white"
    android:gravity="center"
    android:id="@+id/tv_item"
    style="@style/ui_exam_font"
    android:text="扣分项目"/>
 
    <TextView
        android:layout_width="0dp"
        android:layout_weight="1"
        android:layout_height="match_parent"
        android:gravity="center"
        android:textColor="@android:color/white"
        android:id="@+id/tv_score"
        style="@style/ui_exam_font"
    android:text="扣分分数"/>
 
    <TextView
        android:layout_width="0dp"
        android:layout_weight="1"
        android:textColor="@android:color/white"
        android:layout_height="match_parent"
        android:gravity="center"
        android:id="@+id/tv_reason"
        style="@style/ui_exam_font"
    android:text="扣分原因"/>
</LinearLayout>