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 |
android:padding="5dp">
|
|
|
9 |
|
|
|
10 |
|
5 |
gabriel |
11 |
<com.airbnb.lottie.LottieAnimationView
|
|
|
12 |
android:id="@+id/animationView5"
|
|
|
13 |
android:layout_width="380dp"
|
|
|
14 |
android:layout_height="450dp"
|
|
|
15 |
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
16 |
app:layout_constraintEnd_toEndOf="parent"
|
|
|
17 |
app:layout_constraintHorizontal_bias="0.493"
|
|
|
18 |
app:layout_constraintStart_toStartOf="parent"
|
|
|
19 |
app:layout_constraintTop_toTopOf="parent"
|
|
|
20 |
app:layout_constraintVertical_bias="0.592"
|
|
|
21 |
app:lottie_autoPlay="true"
|
|
|
22 |
app:lottie_loop="true"
|
|
|
23 |
app:lottie_rawRes="@raw/errorquiz"
|
|
|
24 |
tools:visibility="visible" />
|
|
|
25 |
|
|
|
26 |
<TextView
|
|
|
27 |
android:id="@+id/textView6"
|
|
|
28 |
android:layout_width="wrap_content"
|
|
|
29 |
android:layout_height="wrap_content"
|
1 |
efrain |
30 |
android:text="@string/label_retry_quiz"
|
4 |
gabriel |
31 |
android:textAlignment="center"
|
5 |
gabriel |
32 |
android:textColor="@color/black"
|
4 |
gabriel |
33 |
android:textSize="20sp"
|
1 |
efrain |
34 |
app:layout_constraintBottom_toBottomOf="parent"
|
5 |
gabriel |
35 |
app:layout_constraintEnd_toEndOf="parent"
|
|
|
36 |
app:layout_constraintHorizontal_bias="1.0"
|
|
|
37 |
app:layout_constraintStart_toStartOf="parent"
|
1 |
efrain |
38 |
app:layout_constraintTop_toTopOf="parent"
|
5 |
gabriel |
39 |
app:layout_constraintVertical_bias="0.263" />
|
1 |
efrain |
40 |
|
|
|
41 |
|
|
|
42 |
</androidx.constraintlayout.widget.ConstraintLayout>
|