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 |
<com.airbnb.lottie.LottieAnimationView
|
|
|
14 |
android:id="@+id/animationView"
|
|
|
15 |
android:layout_width="330dp"
|
|
|
16 |
android:layout_height="360dp"
|
|
|
17 |
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
18 |
app:layout_constraintEnd_toEndOf="parent"
|
|
|
19 |
app:layout_constraintHorizontal_bias="0.493"
|
|
|
20 |
app:layout_constraintStart_toStartOf="parent"
|
|
|
21 |
app:layout_constraintTop_toTopOf="parent"
|
|
|
22 |
app:layout_constraintVertical_bias="0.428"
|
|
|
23 |
app:lottie_autoPlay="true"
|
|
|
24 |
app:lottie_loop="true"
|
|
|
25 |
app:lottie_rawRes="@raw/second_success"
|
|
|
26 |
tools:visibility="visible" />
|
|
|
27 |
|
1 |
efrain |
28 |
<TextView
|
|
|
29 |
android:id="@+id/fragment_finish_capsule_textview_title"
|
|
|
30 |
style="@style/textview_title_big"
|
|
|
31 |
android:layout_width="wrap_content"
|
|
|
32 |
android:layout_height="wrap_content"
|
|
|
33 |
android:text="@string/label_100"
|
4 |
gabriel |
34 |
app:layout_constraintBottom_toBottomOf="@+id/animationView"
|
1 |
efrain |
35 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
36 |
app:layout_constraintRight_toRightOf="parent"
|
4 |
gabriel |
37 |
app:layout_constraintTop_toTopOf="@+id/animationView"
|
|
|
38 |
app:layout_constraintVertical_bias="0.947" />
|
1 |
efrain |
39 |
|
4 |
gabriel |
40 |
<TextView
|
|
|
41 |
android:id="@+id/fragment_finish_capsule_congratulation_finish_capsule"
|
|
|
42 |
style="@style/textview_title2"
|
|
|
43 |
android:layout_width="wrap_content"
|
|
|
44 |
android:layout_height="wrap_content"
|
|
|
45 |
android:layout_marginTop="32dp"
|
|
|
46 |
android:text="@string/label_congratulation_finish_capsule"
|
|
|
47 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
48 |
app:layout_constraintRight_toRightOf="parent"
|
|
|
49 |
app:layout_constraintTop_toBottomOf="@id/fragment_finish_capsule_textview_title" />
|
1 |
efrain |
50 |
|
4 |
gabriel |
51 |
<Button
|
|
|
52 |
android:id="@+id/fragment_finish_capsule_button"
|
|
|
53 |
style="@style/button_intro"
|
|
|
54 |
android:layout_width="0dp"
|
|
|
55 |
android:layout_height="wrap_content"
|
|
|
56 |
android:layout_marginTop="44dp"
|
|
|
57 |
android:text="@string/button_continue"
|
|
|
58 |
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
59 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
60 |
app:layout_constraintRight_toRightOf="parent"
|
|
|
61 |
app:layout_constraintTop_toBottomOf="@id/fragment_finish_capsule_congratulation_finish_capsule"
|
|
|
62 |
app:layout_constraintVertical_bias="0.0"
|
|
|
63 |
app:layout_constraintWidth_percent="0.5" />
|
1 |
efrain |
64 |
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
65 |
|