adapter_content_practice_item.xml
2.5 KB
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/topic"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:textColor="@color/color_25"
android:textSize="18sp" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/topic_recycler"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/topic"
android:layout_marginStart="16dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="16dp"
android:nestedScrollingEnabled="false"
android:overScrollMode="never"
android:paddingBottom="12dp"
android:scrollbars="none"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />
</RelativeLayout>
<LinearLayout
android:id="@+id/content_analysis"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginStart="16dp"
android:layout_marginEnd="16dp"
android:layout_weight="1"
android:orientation="vertical">
<TextView
android:id="@+id/txt_correct"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="24dp"
android:paddingHorizontal="12dp"
android:paddingVertical="7dp"
android:background="@drawable/solid_a2_4_08a2"
android:text="正确答案:B"
android:textColor="@color/color_e8"
android:textSize="18sp" />
<TextView
android:id="@+id/txt_analysis"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:text="解析:首例境外输入病例详情!穿越大半个中国,飞机、火车、出租车全坐过"
android:textColor="@color/color_96"
android:textSize="14sp" />
</LinearLayout>
</LinearLayout>