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 |
gabriel |
4 |
xmlns:tools="http://schemas.android.com/tools"
|
|
|
5 |
android:layout_width="match_parent"
|
1 |
efrain |
6 |
android:layout_height="match_parent"
|
|
|
7 |
android:padding="5dp">
|
|
|
8 |
|
|
|
9 |
<TextView
|
4 |
gabriel |
10 |
android:id="@+id/justifytext_quiz_single_answer_textview_title"
|
1 |
efrain |
11 |
style="@style/textview_quiz_title1"
|
|
|
12 |
android:layout_width="wrap_content"
|
|
|
13 |
android:layout_height="wrap_content"
|
4 |
gabriel |
14 |
android:layout_marginLeft="10dp"
|
|
|
15 |
android:layout_marginTop="10dp"
|
|
|
16 |
android:fontFamily="@font/roboto"
|
1 |
efrain |
17 |
android:text="@string/label_evaluation_about"
|
|
|
18 |
app:layout_constraintLeft_toLeftOf="parent"
|
4 |
gabriel |
19 |
app:layout_constraintTop_toTopOf="parent" />
|
1 |
efrain |
20 |
|
|
|
21 |
<com.codesgood.views.JustifiedTextView
|
4 |
gabriel |
22 |
android:id="@+id/justifytext_quiz_single_answer"
|
1 |
efrain |
23 |
style="@style/textview_quiz_title1"
|
|
|
24 |
android:layout_width="wrap_content"
|
|
|
25 |
android:layout_height="wrap_content"
|
4 |
gabriel |
26 |
android:textAlignment="center"
|
|
|
27 |
android:textStyle=""
|
|
|
28 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
29 |
app:layout_constraintRight_toRightOf="parent"
|
1 |
efrain |
30 |
app:layout_constraintTop_toBottomOf="@id/justifytext_quiz_single_answer_textview_title"
|
4 |
gabriel |
31 |
tools:visibility="gone" />
|
|
|
32 |
|
|
|
33 |
<TextView
|
|
|
34 |
android:id="@+id/textView4"
|
|
|
35 |
android:layout_width="0dp"
|
|
|
36 |
android:layout_height="wrap_content"
|
|
|
37 |
android:layout_marginTop="5dp"
|
|
|
38 |
android:fontFamily="@font/roboto"
|
|
|
39 |
android:textAlignment="center"
|
|
|
40 |
android:textColor="@color/black"
|
|
|
41 |
android:textSize="22dp"
|
|
|
42 |
android:textStyle="bold"
|
1 |
efrain |
43 |
app:layout_constraintLeft_toLeftOf="parent"
|
4 |
gabriel |
44 |
app:layout_constraintRight_toRightOf="parent"
|
|
|
45 |
app:layout_constraintTop_toBottomOf="@id/justifytext_quiz_single_answer_textview_title" />
|
1 |
efrain |
46 |
|
|
|
47 |
<androidx.recyclerview.widget.RecyclerView
|
|
|
48 |
android:id="@+id/list_quiz_single_answer"
|
|
|
49 |
android:layout_width="match_parent"
|
|
|
50 |
android:layout_height="0dp"
|
|
|
51 |
app:layout_constraintBottom_toBottomOf="parent"
|
4 |
gabriel |
52 |
app:layout_constraintTop_toBottomOf="@id/textView4"
|
1 |
efrain |
53 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
54 |
app:layout_constraintRight_toRightOf="parent"/>
|
|
|
55 |
|
|
|
56 |
</androidx.constraintlayout.widget.ConstraintLayout>
|