Línea 1... |
Línea 1... |
1 |
<?xml version="1.0" encoding="utf-8"?>
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2 |
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
3 |
xmlns:app="http://schemas.android.com/apk/res-auto"
|
3 |
xmlns:app="http://schemas.android.com/apk/res-auto"
|
- |
|
4 |
xmlns:tools="http://schemas.android.com/tools"
|
4 |
android:layout_width="match_parent"
|
5 |
android:layout_width="match_parent"
|
5 |
android:layout_height="match_parent"
|
6 |
android:layout_height="match_parent"
|
6 |
android:padding="5dp">
|
7 |
android:padding="5dp">
|
Línea 7... |
Línea 8... |
7 |
|
8 |
|
8 |
<TextView
|
- |
|
9 |
style="@style/textview_quiz_title1"
|
9 |
<TextView
|
- |
|
10 |
android:id="@+id/justifytext_quiz_range_simple_answer_textview_title"
|
10 |
android:id="@+id/justifytext_quiz_range_simple_answer_textview_title"
|
11 |
style="@style/textview_quiz_title1"
|
11 |
android:layout_width="wrap_content"
|
12 |
android:layout_width="wrap_content"
|
12 |
android:layout_height="wrap_content"
|
- |
|
13 |
android:text="@string/label_evaluation_about"
|
- |
|
14 |
android:layout_marginTop="10dp"
|
13 |
android:layout_height="wrap_content"
|
- |
|
14 |
android:layout_marginLeft="10dp"
|
- |
|
15 |
android:layout_marginTop="10dp"
|
- |
|
16 |
android:fontFamily="@font/roboto"
|
15 |
android:layout_marginLeft="10dp"
|
17 |
android:text="@string/label_evaluation_about"
|
16 |
app:layout_constraintLeft_toLeftOf="parent"
|
18 |
app:layout_constraintLeft_toLeftOf="parent"
|
Línea 17... |
Línea -... |
17 |
app:layout_constraintTop_toTopOf="parent"/>
|
- |
|
18 |
|
- |
|
19 |
<com.codesgood.views.JustifiedTextView
|
- |
|
20 |
style="@style/textview_quiz_title1"
|
19 |
app:layout_constraintTop_toTopOf="parent" />
|
21 |
android:id="@+id/justifytext_quiz_range_simple_answer"
|
20 |
|
22 |
android:textStyle=""
|
21 |
<TextView
|
23 |
android:textAlignment="center"
|
22 |
android:id="@+id/textView8"
|
- |
|
23 |
android:layout_width="wrap_content"
|
- |
|
24 |
android:layout_height="wrap_content"
|
- |
|
25 |
android:layout_marginTop="16dp"
|
- |
|
26 |
android:fontFamily="@font/roboto"
|
- |
|
27 |
android:textAlignment="center"
|
- |
|
28 |
android:textColor="@color/black"
|
24 |
android:layout_width="wrap_content"
|
29 |
android:textSize="20sp"
|
25 |
android:layout_height="wrap_content"
|
30 |
android:textStyle="bold"
|
26 |
app:layout_constraintTop_toBottomOf="@id/justifytext_quiz_range_simple_answer_textview_title"
|
31 |
app:layout_constraintEnd_toEndOf="parent"
|
- |
|
32 |
app:layout_constraintHorizontal_bias="0.498"
|
Línea 27... |
Línea 33... |
27 |
app:layout_constraintLeft_toLeftOf="parent"
|
33 |
app:layout_constraintStart_toStartOf="parent"
|
28 |
app:layout_constraintRight_toRightOf="parent"/>
|
34 |
app:layout_constraintTop_toBottomOf="@+id/justifytext_quiz_range_simple_answer_textview_title" />
|
29 |
|
35 |
|
30 |
<androidx.recyclerview.widget.RecyclerView
|
36 |
<androidx.recyclerview.widget.RecyclerView
|
31 |
android:id="@+id/list_quiz_range_simple_answer"
|
37 |
android:id="@+id/list_quiz_range_simple_answer"
|
32 |
android:layout_width="match_parent"
|
- |
|
33 |
android:layout_height="0dp"
|
38 |
android:layout_width="match_parent"
|
34 |
app:layout_constraintBottom_toBottomOf="parent"
|
39 |
android:layout_height="0dp"
|
- |
|
40 |
app:layout_constraintBottom_toBottomOf="parent"
|
Línea 35... |
Línea 41... |
35 |
app:layout_constraintTop_toBottomOf="@id/justifytext_quiz_range_simple_answer"
|
41 |
app:layout_constraintLeft_toLeftOf="parent"
|
36 |
app:layout_constraintLeft_toLeftOf="parent"
|
42 |
app:layout_constraintRight_toRightOf="parent"
|