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
<?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="wrap_content"
xmlns:tool="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_marginHorizontal="5dp">
<TextView
android:id="@+id/tvKategori"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tool:text="A. Kategori Ini"
android:textSize="15sp"
android:textStyle="bold"
android:textAlignment="textStart"
android:layout_weight="1"
android:layout_marginBottom="30px"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_marginBottom="20px">
<TextView
android:id="@+id/tvNoQuestion"
android:layout_width="50dp"
android:layout_height="wrap_content"
tool:text="1"
android:textSize="15sp"
android:textAlignment="textStart"
android:layout_weight="1"/>
<LinearLayout
android:layout_width="fill_parent"
android:layout_weight="1"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:id="@+id/tvQuestion"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tool:text="Contoh Soal disini"
android:textSize="15sp"/>
<LinearLayout
android:id="@+id/rowChoice"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</LinearLayout>
</LinearLayout>
</LinearLayout>
</LinearLayout>