1 |
efrain |
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
|
2 |
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
3 |
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
4 |
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
5 |
xmlns:tools="http://schemas.android.com/tools"
|
|
|
6 |
android:layout_width="match_parent"
|
|
|
7 |
android:layout_height="match_parent">
|
|
|
8 |
|
|
|
9 |
|
|
|
10 |
<TextView
|
4 |
gabriel |
11 |
android:id="@+id/fragment_quiz_intro_textview_title"
|
1 |
efrain |
12 |
style="@style/textview_quiz_title1"
|
|
|
13 |
android:layout_width="wrap_content"
|
|
|
14 |
android:layout_height="wrap_content"
|
4 |
gabriel |
15 |
android:layout_marginLeft="10dp"
|
|
|
16 |
android:layout_marginTop="10dp"
|
|
|
17 |
android:fontFamily="@font/roboto"
|
1 |
efrain |
18 |
android:text="@string/label_evaluation_about"
|
4 |
gabriel |
19 |
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
|
|
|
20 |
android:textColor="@color/textviewTopicProgress"
|
|
|
21 |
android:textSize="18sp"
|
|
|
22 |
android:textStyle="bold"
|
1 |
efrain |
23 |
app:layout_constraintLeft_toLeftOf="parent"
|
4 |
gabriel |
24 |
app:layout_constraintTop_toTopOf="parent" />
|
1 |
efrain |
25 |
|
|
|
26 |
|
4 |
gabriel |
27 |
<TextView
|
|
|
28 |
android:id="@+id/textView"
|
|
|
29 |
android:layout_width="0dp"
|
|
|
30 |
android:layout_height="wrap_content"
|
|
|
31 |
android:layout_marginLeft="15dp"
|
|
|
32 |
android:layout_marginRight="15dp"
|
|
|
33 |
android:text="TextView"
|
1 |
efrain |
34 |
android:textAlignment="center"
|
4 |
gabriel |
35 |
android:textColor="@color/black"
|
5 |
gabriel |
36 |
android:textSize="24sp"
|
4 |
gabriel |
37 |
android:textStyle="bold|italic"
|
1 |
efrain |
38 |
app:layout_constraintBottom_toBottomOf="parent"
|
4 |
gabriel |
39 |
app:layout_constraintEnd_toEndOf="parent"
|
5 |
gabriel |
40 |
app:layout_constraintHorizontal_bias="0.482"
|
4 |
gabriel |
41 |
app:layout_constraintStart_toStartOf="parent"
|
|
|
42 |
app:layout_constraintTop_toTopOf="parent"
|
5 |
gabriel |
43 |
app:layout_constraintVertical_bias="0.14" />
|
1 |
efrain |
44 |
|
4 |
gabriel |
45 |
<com.airbnb.lottie.LottieAnimationView
|
|
|
46 |
android:id="@+id/animationView4"
|
5 |
gabriel |
47 |
android:layout_width="314dp"
|
|
|
48 |
android:layout_height="363dp"
|
1 |
efrain |
49 |
app:layout_constraintBottom_toBottomOf="parent"
|
4 |
gabriel |
50 |
app:layout_constraintEnd_toEndOf="parent"
|
5 |
gabriel |
51 |
app:layout_constraintHorizontal_bias="0.494"
|
4 |
gabriel |
52 |
app:layout_constraintStart_toStartOf="parent"
|
1 |
efrain |
53 |
app:layout_constraintTop_toTopOf="parent"
|
5 |
gabriel |
54 |
app:layout_constraintVertical_bias="0.554"
|
4 |
gabriel |
55 |
app:lottie_autoPlay="true"
|
|
|
56 |
app:lottie_loop="true"
|
5 |
gabriel |
57 |
app:lottie_rawRes="@raw/quizinit"
|
4 |
gabriel |
58 |
tools:visibility="visible" />
|
1 |
efrain |
59 |
|
|
|
60 |
|
|
|
61 |
</androidx.constraintlayout.widget.ConstraintLayout>
|