1 |
efrain |
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
|
2 |
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
3 |
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
4 |
android:layout_width="match_parent"
|
|
|
5 |
android:layout_height="match_parent"
|
|
|
6 |
android:padding="5dp">
|
|
|
7 |
|
|
|
8 |
<TextView
|
4 |
gabriel |
9 |
android:id="@+id/textView5"
|
|
|
10 |
android:layout_width="0dp"
|
|
|
11 |
android:layout_height="wrap_content"
|
|
|
12 |
android:layout_marginLeft="15dp"
|
|
|
13 |
android:layout_marginRight="15dp"
|
|
|
14 |
android:text="TextView"
|
|
|
15 |
android:textAlignment="center"
|
|
|
16 |
android:textColor="@color/black"
|
|
|
17 |
android:textSize="20sp"
|
|
|
18 |
android:textStyle="bold|italic"
|
|
|
19 |
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
20 |
app:layout_constraintEnd_toEndOf="parent"
|
|
|
21 |
app:layout_constraintHorizontal_bias="0.589"
|
|
|
22 |
app:layout_constraintStart_toStartOf="parent"
|
|
|
23 |
app:layout_constraintTop_toTopOf="parent"
|
|
|
24 |
app:layout_constraintVertical_bias="0.071" />
|
|
|
25 |
|
|
|
26 |
<TextView
|
|
|
27 |
android:id="@+id/justifytext_quiz_multiple_answer_textview_title"
|
1 |
efrain |
28 |
style="@style/textview_quiz_title1"
|
|
|
29 |
android:layout_width="wrap_content"
|
|
|
30 |
android:layout_height="wrap_content"
|
4 |
gabriel |
31 |
android:layout_marginLeft="10dp"
|
|
|
32 |
android:layout_marginTop="10dp"
|
|
|
33 |
android:fontFamily="@font/roboto"
|
1 |
efrain |
34 |
android:text="@string/label_question"
|
|
|
35 |
android:textAlignment="center"
|
|
|
36 |
app:layout_constraintLeft_toLeftOf="parent"
|
4 |
gabriel |
37 |
app:layout_constraintTop_toTopOf="parent" />
|
1 |
efrain |
38 |
|
|
|
39 |
<androidx.recyclerview.widget.RecyclerView
|
|
|
40 |
android:id="@+id/list_quiz_multiple_answer"
|
|
|
41 |
android:layout_width="match_parent"
|
|
|
42 |
android:layout_height="0dp"
|
|
|
43 |
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
44 |
app:layout_constraintLeft_toLeftOf="parent"
|
4 |
gabriel |
45 |
app:layout_constraintRight_toRightOf="parent"
|
|
|
46 |
app:layout_constraintTop_toBottomOf="@+id/textView5" />
|
1 |
efrain |
47 |
|
|
|
48 |
</androidx.constraintlayout.widget.ConstraintLayout>
|