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
|
|
|
9 |
style="@style/textview_quiz_title1"
|
|
|
10 |
android:id="@+id/justifytext_quiz_range_simple_answer_textview_title"
|
|
|
11 |
android:layout_width="wrap_content"
|
|
|
12 |
android:layout_height="wrap_content"
|
|
|
13 |
android:text="@string/label_evaluation_about"
|
|
|
14 |
android:layout_marginTop="10dp"
|
|
|
15 |
android:layout_marginLeft="10dp"
|
|
|
16 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
17 |
app:layout_constraintTop_toTopOf="parent"/>
|
|
|
18 |
|
|
|
19 |
<com.codesgood.views.JustifiedTextView
|
|
|
20 |
style="@style/textview_quiz_title1"
|
|
|
21 |
android:id="@+id/justifytext_quiz_range_simple_answer"
|
|
|
22 |
android:textStyle=""
|
|
|
23 |
android:textAlignment="center"
|
|
|
24 |
android:layout_width="wrap_content"
|
|
|
25 |
android:layout_height="wrap_content"
|
|
|
26 |
app:layout_constraintTop_toBottomOf="@id/justifytext_quiz_range_simple_answer_textview_title"
|
|
|
27 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
28 |
app:layout_constraintRight_toRightOf="parent"/>
|
|
|
29 |
|
|
|
30 |
<androidx.recyclerview.widget.RecyclerView
|
|
|
31 |
android:id="@+id/list_quiz_range_simple_answer"
|
|
|
32 |
android:layout_width="match_parent"
|
|
|
33 |
android:layout_height="0dp"
|
|
|
34 |
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
35 |
app:layout_constraintTop_toBottomOf="@id/justifytext_quiz_range_simple_answer"
|
|
|
36 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
37 |
app:layout_constraintRight_toRightOf="parent"/>
|
|
|
38 |
|
|
|
39 |
</androidx.constraintlayout.widget.ConstraintLayout>
|