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 |
|
|
|
13 |
<TextView
|
|
|
14 |
style="@style/textview_title1"
|
|
|
15 |
android:id="@+id/intro_textview_title"
|
|
|
16 |
android:layout_width="wrap_content"
|
|
|
17 |
android:layout_height="wrap_content"
|
|
|
18 |
android:text="@string/intro_take_time_to_learn"
|
|
|
19 |
app:layout_constraintTop_toTopOf="parent"
|
|
|
20 |
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
21 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
22 |
app:layout_constraintRight_toRightOf="parent"
|
|
|
23 |
app:layout_constraintVertical_bias="0.40" />
|
|
|
24 |
|
|
|
25 |
<TextView
|
|
|
26 |
style="@style/textview_title2"
|
|
|
27 |
android:id="@+id/signin_textview_communique_easily"
|
|
|
28 |
android:layout_width="wrap_content"
|
|
|
29 |
android:layout_height="wrap_content"
|
|
|
30 |
android:text="@string/intro_communique_easily"
|
|
|
31 |
android:layout_marginTop="10dp"
|
|
|
32 |
app:layout_constraintTop_toBottomOf="@id/intro_textview_title"
|
|
|
33 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
34 |
app:layout_constraintRight_toRightOf="parent" />
|
|
|
35 |
|
|
|
36 |
<Button
|
|
|
37 |
style="@style/button_intro"
|
|
|
38 |
android:id="@+id/intro_button_get_started"
|
|
|
39 |
android:layout_width="0dp"
|
|
|
40 |
android:layout_height="wrap_content"
|
|
|
41 |
android:layout_marginTop="40dp"
|
|
|
42 |
android:text="@string/intro_get_started"
|
|
|
43 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
44 |
app:layout_constraintRight_toRightOf="parent"
|
|
|
45 |
app:layout_constraintTop_toBottomOf="@id/signin_textview_communique_easily"
|
|
|
46 |
app:layout_constraintWidth_percent="0.5" />
|
|
|
47 |
|
|
|
48 |
|
|
|
49 |
<TextView
|
|
|
50 |
style="@style/textview_title2"
|
|
|
51 |
android:id="@+id/intro_textview_already_have_an_account"
|
|
|
52 |
android:layout_width="wrap_content"
|
|
|
53 |
android:layout_height="wrap_content"
|
|
|
54 |
android:layout_marginTop="20dp"
|
|
|
55 |
android:text="@string/intro_label_already_have_an_account"
|
|
|
56 |
app:layout_constraintTop_toBottomOf="@id/intro_button_get_started"
|
|
|
57 |
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
58 |
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
59 |
app:layout_constraintRight_toRightOf="parent"
|
|
|
60 |
app:layout_constraintVertical_bias="0.90" />
|
|
|
61 |
/>
|
|
|
62 |
|
|
|
63 |
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
64 |
|