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/animationView3"
|
|
|
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.121"
|
|
|
23 |
app:lottie_autoPlay="true"
|
|
|
24 |
app:lottie_loop="true"
|
|
|
25 |
app:lottie_rawRes="@raw/learning"
|
|
|
26 |
tools:visibility="visible" />
|
1 |
efrain |
27 |
|
4 |
gabriel |
28 |
<TextView
|
|
|
29 |
android:id="@+id/intro_textview_title"
|
|
|
30 |
style="@style/textview_title1"
|
|
|
31 |
android:layout_width="wrap_content"
|
|
|
32 |
android:layout_height="wrap_content"
|
|
|
33 |
android:text="@string/intro_take_time_to_learn"
|
|
|
34 |
app:layout_constraintBottom_toBottomOf="@+id/animationView3"
|
|
|
35 |
app:layout_constraintHorizontal_bias="0.497"
|
|
|
36 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
37 |
app:layout_constraintRight_toRightOf="parent"
|
|
|
38 |
app:layout_constraintTop_toTopOf="@+id/animationView3"
|
|
|
39 |
app:layout_constraintVertical_bias="1.0" />
|
|
|
40 |
|
|
|
41 |
<TextView
|
1 |
efrain |
42 |
style="@style/textview_title2"
|
|
|
43 |
android:id="@+id/signin_textview_communique_easily"
|
|
|
44 |
android:layout_width="wrap_content"
|
|
|
45 |
android:layout_height="wrap_content"
|
|
|
46 |
android:text="@string/intro_communique_easily"
|
|
|
47 |
android:layout_marginTop="10dp"
|
|
|
48 |
app:layout_constraintTop_toBottomOf="@id/intro_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/intro_button_get_started"
|
|
|
55 |
android:layout_width="0dp"
|
|
|
56 |
android:layout_height="wrap_content"
|
|
|
57 |
android:layout_marginTop="40dp"
|
|
|
58 |
android:text="@string/intro_get_started"
|
|
|
59 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
60 |
app:layout_constraintRight_toRightOf="parent"
|
|
|
61 |
app:layout_constraintTop_toBottomOf="@id/signin_textview_communique_easily"
|
|
|
62 |
app:layout_constraintWidth_percent="0.5" />
|
|
|
63 |
|
|
|
64 |
|
|
|
65 |
<TextView
|
|
|
66 |
style="@style/textview_title2"
|
|
|
67 |
android:id="@+id/intro_textview_already_have_an_account"
|
|
|
68 |
android:layout_width="wrap_content"
|
|
|
69 |
android:layout_height="wrap_content"
|
|
|
70 |
android:layout_marginTop="20dp"
|
|
|
71 |
android:text="@string/intro_label_already_have_an_account"
|
|
|
72 |
app:layout_constraintTop_toBottomOf="@id/intro_button_get_started"
|
|
|
73 |
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
74 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
75 |
app:layout_constraintRight_toRightOf="parent"
|
|
|
76 |
app:layout_constraintVertical_bias="0.90" />
|
|
|
77 |
/>
|
|
|
78 |
|
|
|
79 |
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
80 |
|