| 1 |
gabriel |
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 |
|
| 45 |
gabriel |
13 |
<ImageView
|
|
|
14 |
android:id="@+id/imageView4"
|
|
|
15 |
android:layout_width="255dp"
|
|
|
16 |
android:layout_height="342dp"
|
|
|
17 |
android:visibility="visible"
|
|
|
18 |
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
19 |
app:layout_constraintEnd_toEndOf="parent"
|
|
|
20 |
app:layout_constraintStart_toStartOf="parent"
|
|
|
21 |
app:layout_constraintTop_toTopOf="parent" />
|
|
|
22 |
|
| 46 |
gabriel |
23 |
|
| 1 |
gabriel |
24 |
<com.airbnb.lottie.LottieAnimationView
|
|
|
25 |
android:id="@+id/animationView3"
|
| 46 |
gabriel |
26 |
android:layout_width="284dp"
|
|
|
27 |
android:layout_height="279dp"
|
| 45 |
gabriel |
28 |
android:visibility="gone"
|
| 1 |
gabriel |
29 |
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
30 |
app:layout_constraintEnd_toEndOf="parent"
|
| 46 |
gabriel |
31 |
app:layout_constraintHorizontal_bias="0.496"
|
| 1 |
gabriel |
32 |
app:layout_constraintStart_toStartOf="parent"
|
|
|
33 |
app:layout_constraintTop_toTopOf="parent"
|
| 46 |
gabriel |
34 |
app:layout_constraintVertical_bias="0.148"
|
| 1 |
gabriel |
35 |
app:lottie_autoPlay="true"
|
|
|
36 |
app:lottie_loop="true"
|
| 46 |
gabriel |
37 |
app:lottie_rawRes="@raw/learning"
|
|
|
38 |
tools:visibility="visible" />
|
| 1 |
gabriel |
39 |
|
|
|
40 |
<TextView
|
|
|
41 |
android:id="@+id/intro_textview_title"
|
|
|
42 |
style="@style/textview_title1"
|
|
|
43 |
android:layout_width="wrap_content"
|
|
|
44 |
android:layout_height="wrap_content"
|
| 46 |
gabriel |
45 |
android:layout_marginTop="16dp"
|
| 21 |
gabriel |
46 |
android:fontFamily="@font/roboto"
|
| 1 |
gabriel |
47 |
android:text="@string/intro_take_time_to_learn"
|
| 21 |
gabriel |
48 |
android:textSize="20sp"
|
| 45 |
gabriel |
49 |
android:visibility="gone"
|
| 46 |
gabriel |
50 |
app:layout_constraintHorizontal_bias="0.49"
|
| 1 |
gabriel |
51 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
52 |
app:layout_constraintRight_toRightOf="parent"
|
| 46 |
gabriel |
53 |
app:layout_constraintTop_toBottomOf="@+id/animationView3"
|
|
|
54 |
tools:visibility="visible" />
|
| 1 |
gabriel |
55 |
|
|
|
56 |
<TextView
|
| 21 |
gabriel |
57 |
android:id="@+id/signin_textview_communique_easily"
|
|
|
58 |
style="@style/textview_title2"
|
|
|
59 |
android:layout_width="wrap_content"
|
|
|
60 |
android:layout_height="wrap_content"
|
| 46 |
gabriel |
61 |
android:layout_marginTop="12dp"
|
| 21 |
gabriel |
62 |
android:fontFamily="@font/roboto_bold"
|
|
|
63 |
android:text="@string/intro_communique_easily"
|
|
|
64 |
android:textSize="16sp"
|
| 45 |
gabriel |
65 |
android:visibility="gone"
|
| 21 |
gabriel |
66 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
67 |
app:layout_constraintRight_toRightOf="parent"
|
| 46 |
gabriel |
68 |
app:layout_constraintTop_toBottomOf="@id/intro_textview_title"
|
|
|
69 |
tools:visibility="visible" />
|
| 1 |
gabriel |
70 |
|
| 21 |
gabriel |
71 |
<Button
|
|
|
72 |
android:id="@+id/intro_button_get_started"
|
|
|
73 |
android:layout_width="0dp"
|
|
|
74 |
android:layout_height="55dp"
|
| 46 |
gabriel |
75 |
android:layout_marginTop="48dp"
|
| 21 |
gabriel |
76 |
android:background="@drawable/rounded_primarynew_style"
|
|
|
77 |
android:fontFamily="@font/roboto"
|
|
|
78 |
android:text="@string/intro_get_started"
|
|
|
79 |
android:textColor="@color/colorTitleText"
|
|
|
80 |
android:textStyle="bold"
|
| 45 |
gabriel |
81 |
android:visibility="gone"
|
| 21 |
gabriel |
82 |
app:layout_constraintHorizontal_bias="0.497"
|
|
|
83 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
84 |
app:layout_constraintRight_toRightOf="parent"
|
|
|
85 |
app:layout_constraintTop_toBottomOf="@id/signin_textview_communique_easily"
|
| 46 |
gabriel |
86 |
app:layout_constraintWidth_percent="0.5"
|
|
|
87 |
tools:visibility="visible" />
|
| 1 |
gabriel |
88 |
|
| 24 |
gabriel |
89 |
<TextView
|
|
|
90 |
android:id="@+id/textView19"
|
| 46 |
gabriel |
91 |
style="@style/textview_title1"
|
| 24 |
gabriel |
92 |
android:layout_width="187dp"
|
|
|
93 |
android:layout_height="42dp"
|
|
|
94 |
android:text="Todos los derechos registrados al 2022 son de"
|
|
|
95 |
android:textAlignment="center"
|
|
|
96 |
android:textSize="14sp"
|
| 45 |
gabriel |
97 |
android:visibility="gone"
|
| 24 |
gabriel |
98 |
app:layout_constraintBottom_toTopOf="@+id/imageView2"
|
|
|
99 |
app:layout_constraintEnd_toEndOf="parent"
|
|
|
100 |
app:layout_constraintStart_toStartOf="parent"
|
|
|
101 |
app:layout_constraintTop_toBottomOf="@+id/intro_button_get_started"
|
| 46 |
gabriel |
102 |
app:layout_constraintVertical_bias="0.67"
|
|
|
103 |
tools:visibility="visible" />
|
| 24 |
gabriel |
104 |
|
| 21 |
gabriel |
105 |
<ImageView
|
|
|
106 |
android:id="@+id/imageView2"
|
|
|
107 |
android:layout_width="70dp"
|
|
|
108 |
android:layout_height="95dp"
|
| 23 |
gabriel |
109 |
android:src="@drawable/logovert"
|
| 45 |
gabriel |
110 |
android:visibility="gone"
|
| 24 |
gabriel |
111 |
app:layout_constraintBottom_toTopOf="@+id/knowmore"
|
| 21 |
gabriel |
112 |
app:layout_constraintEnd_toEndOf="parent"
|
| 24 |
gabriel |
113 |
app:layout_constraintHorizontal_bias="0.498"
|
| 21 |
gabriel |
114 |
app:layout_constraintStart_toStartOf="parent"
|
|
|
115 |
app:layout_constraintTop_toTopOf="parent"
|
| 46 |
gabriel |
116 |
app:layout_constraintVertical_bias="0.963"
|
|
|
117 |
tools:visibility="visible" />
|
| 1 |
gabriel |
118 |
|
| 21 |
gabriel |
119 |
<TextView
|
|
|
120 |
android:id="@+id/knowmore"
|
|
|
121 |
style="@style/textview_title2"
|
| 24 |
gabriel |
122 |
android:layout_width="fill_parent"
|
| 21 |
gabriel |
123 |
android:layout_height="wrap_content"
|
|
|
124 |
android:layout_marginTop="20dp"
|
|
|
125 |
android:fontFamily="@font/roboto"
|
|
|
126 |
android:text="Saber más"
|
| 24 |
gabriel |
127 |
android:textAlignment="center"
|
| 21 |
gabriel |
128 |
android:textSize="14sp"
|
| 45 |
gabriel |
129 |
android:visibility="gone"
|
| 21 |
gabriel |
130 |
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
131 |
app:layout_constraintRight_toRightOf="parent"
|
| 24 |
gabriel |
132 |
app:layout_constraintStart_toStartOf="parent"
|
| 21 |
gabriel |
133 |
app:layout_constraintTop_toBottomOf="@id/intro_button_get_started"
|
| 46 |
gabriel |
134 |
app:layout_constraintVertical_bias="0.959"
|
|
|
135 |
tools:visibility="visible" />
|
| 1 |
gabriel |
136 |
|
| 21 |
gabriel |
137 |
|
|
|
138 |
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
139 |
|