1 |
efrain |
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
|
2 |
|
|
|
3 |
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
4 |
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
5 |
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
6 |
xmlns:tools="http://schemas.android.com/tools"
|
|
|
7 |
android:orientation="vertical"
|
|
|
8 |
android:layout_width="match_parent"
|
|
|
9 |
android:layout_height="match_parent"
|
|
|
10 |
android:background="@color/windowBackgroud"
|
|
|
11 |
tools:context=".fragment.IntroFragment">
|
|
|
12 |
|
4 |
gabriel |
13 |
|
|
|
14 |
<com.airbnb.lottie.LottieAnimationView
|
|
|
15 |
android:id="@+id/animationView2"
|
|
|
16 |
android:layout_width="330dp"
|
|
|
17 |
android:layout_height="360dp"
|
|
|
18 |
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
19 |
app:layout_constraintEnd_toEndOf="parent"
|
|
|
20 |
app:layout_constraintHorizontal_bias="0.493"
|
|
|
21 |
app:layout_constraintStart_toStartOf="parent"
|
|
|
22 |
app:layout_constraintTop_toTopOf="parent"
|
|
|
23 |
app:layout_constraintVertical_bias="0.38"
|
|
|
24 |
app:lottie_autoPlay="true"
|
|
|
25 |
app:lottie_loop="true"
|
|
|
26 |
app:lottie_rawRes="@raw/success_cap"
|
|
|
27 |
tools:visibility="visible" />
|
|
|
28 |
|
1 |
efrain |
29 |
<TextView
|
|
|
30 |
android:id="@+id/fragment_finish_topic_textview_title"
|
|
|
31 |
style="@style/textview_title_big"
|
|
|
32 |
android:layout_width="wrap_content"
|
|
|
33 |
android:layout_height="wrap_content"
|
|
|
34 |
android:text="@string/label_100"
|
4 |
gabriel |
35 |
app:layout_constraintBottom_toBottomOf="@+id/animationView2"
|
1 |
efrain |
36 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
37 |
app:layout_constraintRight_toRightOf="parent"
|
9 |
gabriel |
38 |
app:layout_constraintTop_toBottomOf="@+id/animationView2"
|
4 |
gabriel |
39 |
app:layout_constraintVertical_bias="0.966" />
|
1 |
efrain |
40 |
|
4 |
gabriel |
41 |
<TextView
|
1 |
efrain |
42 |
style="@style/textview_title2"
|
|
|
43 |
android:id="@+id/fragment_finish_topic_congratulation_finish_topic"
|
|
|
44 |
android:layout_width="wrap_content"
|
|
|
45 |
android:layout_height="wrap_content"
|
|
|
46 |
android:text="@string/label_congratulation_finish_topic"
|
|
|
47 |
android:layout_marginTop="30dp"
|
|
|
48 |
app:layout_constraintTop_toBottomOf="@id/fragment_finish_topic_textview_title"
|
|
|
49 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
50 |
app:layout_constraintRight_toRightOf="parent"/>
|
|
|
51 |
|
|
|
52 |
<Button
|
|
|
53 |
style="@style/button_intro"
|
|
|
54 |
android:id="@+id/fragment_finish_topic_button"
|
|
|
55 |
android:layout_width="0dp"
|
|
|
56 |
android:layout_height="wrap_content"
|
|
|
57 |
android:layout_marginTop="40dp"
|
|
|
58 |
android:text="@string/button_continue"
|
|
|
59 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
60 |
app:layout_constraintRight_toRightOf="parent"
|
|
|
61 |
app:layout_constraintTop_toBottomOf="@id/fragment_finish_topic_congratulation_finish_topic"
|
9 |
gabriel |
62 |
app:layout_constraintWidth_percent="0.5" />
|
1 |
efrain |
63 |
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
64 |
|