| Línea 1... |
Línea 1... |
| 1 |
<?xml version="1.0" encoding="utf-8"?>
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
| 2 |
<androidx.constraintlayout.widget.ConstraintLayout
|
- |
|
| 3 |
xmlns:android="http://schemas.android.com/apk/res/android"
|
2 |
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
| 4 |
xmlns:app="http://schemas.android.com/apk/res-auto"
|
3 |
xmlns:app="http://schemas.android.com/apk/res-auto"
|
| 5 |
xmlns:tools="http://schemas.android.com/tools"
|
4 |
xmlns:tools="http://schemas.android.com/tools"
|
| 6 |
android:orientation="vertical"
|
- |
|
| 7 |
|
- |
|
| 8 |
android:layout_width="match_parent"
|
5 |
android:layout_width="match_parent"
|
| - |
|
6 |
|
| 9 |
android:layout_height="match_parent"
|
7 |
android:layout_height="match_parent"
|
| 10 |
android:background="@color/windowBackgroud"
|
8 |
android:background="@color/windowBackgroud"
|
| - |
|
9 |
android:orientation="vertical"
|
| 11 |
tools:context=".fragment.SigninFragment">
|
10 |
tools:context=".fragment.SigninFragment">
|
| Línea 12... |
Línea 11... |
| 12 |
|
11 |
|
| 13 |
<ImageView
|
12 |
<ImageView
|
| 14 |
android:id="@+id/signin_imageview_logo"
|
13 |
android:id="@+id/signin_imageview_logo"
|
| 15 |
android:layout_width="104dp"
|
14 |
android:layout_width="72dp"
|
| 16 |
android:layout_height="87dp"
|
15 |
android:layout_height="81dp"
|
| 17 |
android:layout_marginTop="36dp"
|
16 |
android:layout_marginTop="84dp"
|
| 18 |
app:layout_constraintHeight_percent="0.3"
|
17 |
app:layout_constraintHeight_percent="0.3"
|
| 19 |
app:layout_constraintHorizontal_bias="0.094"
|
18 |
app:layout_constraintHorizontal_bias="0.0"
|
| 20 |
app:layout_constraintLeft_toLeftOf="parent"
|
19 |
app:layout_constraintLeft_toLeftOf="parent"
|
| 21 |
app:layout_constraintRight_toRightOf="parent"
|
20 |
app:layout_constraintRight_toRightOf="parent"
|
| 22 |
app:layout_constraintTop_toTopOf="parent"
|
21 |
app:layout_constraintTop_toTopOf="parent"
|
| 23 |
app:layout_constraintWidth_percent="0.4"
|
22 |
app:layout_constraintWidth_percent="0.4"
|
| Línea 24... |
Línea 23... |
| 24 |
app:srcCompat="@drawable/ic_logo" />
|
23 |
app:srcCompat="@drawable/ic_logo" />
|
| - |
|
24 |
|
| - |
|
25 |
<TextView
|
| - |
|
26 |
android:id="@+id/textView10"
|
| - |
|
27 |
android:layout_width="wrap_content"
|
| - |
|
28 |
android:layout_height="wrap_content"
|
| - |
|
29 |
android:layout_marginTop="100dp"
|
| - |
|
30 |
android:text="@string/app_name"
|
| - |
|
31 |
android:textColor="@color/colorTextColor"
|
| - |
|
32 |
android:textSize="30sp"
|
| - |
|
33 |
android:textStyle="bold"
|
| - |
|
34 |
app:layout_constraintEnd_toEndOf="parent"
|
| - |
|
35 |
app:layout_constraintHorizontal_bias="0.095"
|
| - |
|
36 |
app:layout_constraintStart_toEndOf="@+id/signin_imageview_logo"
|
| - |
|
37 |
app:layout_constraintTop_toTopOf="parent" />
|
| 25 |
|
38 |
|
| 26 |
<TextView
|
39 |
<TextView
|
| 27 |
android:id="@+id/textView9"
|
40 |
android:id="@+id/textView9"
|
| - |
|
41 |
android:layout_width="wrap_content"
|
| 28 |
android:layout_width="wrap_content"
|
42 |
android:layout_height="wrap_content"
|
| - |
|
43 |
android:layout_marginStart="16dp"
|
| 29 |
android:layout_height="wrap_content"
|
44 |
android:layout_marginTop="32dp"
|
| 30 |
android:layout_marginTop="32dp"
|
45 |
android:fontFamily="@font/roboto"
|
| 31 |
android:text="¡Hola!"
|
46 |
android:text="@string/signin_hello"
|
| 32 |
android:textColor="@color/black"
|
47 |
android:textColor="@color/colorTextColor"
|
| 33 |
android:textSize="34sp"
|
- |
|
| 34 |
android:textStyle="bold"
|
- |
|
| 35 |
app:layout_constraintEnd_toEndOf="parent"
|
48 |
android:textSize="34sp"
|
| 36 |
app:layout_constraintHorizontal_bias="0.09"
|
49 |
android:textStyle="bold"
|
| Línea 37... |
Línea 50... |
| 37 |
app:layout_constraintStart_toStartOf="parent"
|
50 |
app:layout_constraintStart_toStartOf="parent"
|
| 38 |
app:layout_constraintTop_toBottomOf="@+id/signin_imageview_logo" />
|
51 |
app:layout_constraintTop_toBottomOf="@+id/signin_imageview_logo" />
|
| 39 |
|
52 |
|
| 40 |
<TextView
|
53 |
<TextView
|
| 41 |
android:id="@+id/signin_textview_title"
|
54 |
android:id="@+id/signin_textview_title"
|
| 42 |
style="@style/textview_title1"
|
55 |
style="@style/textview_title1"
|
| - |
|
56 |
android:layout_width="wrap_content"
|
| 43 |
android:layout_width="wrap_content"
|
57 |
android:layout_height="wrap_content"
|
| 44 |
android:layout_height="wrap_content"
|
58 |
android:layout_marginTop="32dp"
|
| 45 |
android:layout_marginTop="108dp"
|
59 |
android:fontFamily="@font/roboto"
|
| 46 |
android:text="Completa tus datos para ingresar a tu cuenta:"
|
60 |
android:text="@string/signin_already_have_an_account"
|
| 47 |
android:textColor="@color/colorTextColor"
|
61 |
android:textColor="@color/colorTextColor"
|
| 48 |
android:textSize="16sp"
|
62 |
android:textSize="16sp"
|
| 49 |
app:layout_constraintHorizontal_bias="0.353"
|
- |
|
| 50 |
app:layout_constraintLeft_toLeftOf="parent"
|
- |
|
| 51 |
app:layout_constraintRight_toRightOf="parent"
|
- |
|
| 52 |
app:layout_constraintTop_toBottomOf="@id/signin_imageview_logo" />
|
- |
|
| 53 |
|
- |
|
| 54 |
<TextView
|
- |
|
| 55 |
android:id="@+id/textView10"
|
- |
|
| 56 |
android:layout_width="wrap_content"
|
- |
|
| 57 |
android:layout_height="wrap_content"
|
- |
|
| 58 |
android:layout_marginTop="28dp"
|
- |
|
| 59 |
android:text="Correo electrónico"
|
- |
|
| 60 |
android:textColor="@color/colorTextColor"
|
- |
|
| 61 |
app:layout_constraintEnd_toEndOf="parent"
|
63 |
app:layout_constraintHorizontal_bias="0.181"
|
| Línea 62... |
Línea 64... |
| 62 |
app:layout_constraintHorizontal_bias="0.176"
|
64 |
app:layout_constraintLeft_toLeftOf="parent"
|
| 63 |
app:layout_constraintStart_toStartOf="parent"
|
65 |
app:layout_constraintRight_toRightOf="parent"
|
| 64 |
app:layout_constraintTop_toBottomOf="@+id/signin_textview_title" />
|
66 |
app:layout_constraintTop_toBottomOf="@+id/textView9" />
|
| 65 |
|
67 |
|
| 66 |
<EditText
|
68 |
<EditText
|
| - |
|
69 |
android:id="@+id/signin_edittext_email"
|
| 67 |
android:id="@+id/signin_edittext_email"
|
70 |
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
| - |
|
71 |
android:layout_width="match_parent"
|
| - |
|
72 |
android:layout_height="40dp"
|
| 68 |
style="@style/Widget.AppCompat.EditText"
|
73 |
android:layout_marginLeft="15dp"
|
| 69 |
android:layout_width="320dp"
|
74 |
android:layout_marginTop="52dp"
|
| - |
|
75 |
android:layout_marginRight="15dp"
|
| 70 |
android:layout_height="46dp"
|
76 |
android:ems="10"
|
| 71 |
android:layout_marginTop="16dp"
|
77 |
android:hint="@string/signin_email"
|
| 72 |
android:hint="@string/signin_email"
|
78 |
android:inputType="textEmailAddress"
|
| 73 |
android:inputType="textEmailAddress"
|
79 |
android:textColorHint="@color/colorAccent"
|
| - |
|
80 |
app:layout_constraintHorizontal_bias="1.0"
|
| Línea 74... |
Línea 81... |
| 74 |
app:layout_constraintHorizontal_bias="0.494"
|
81 |
app:layout_constraintLeft_toLeftOf="parent"
|
| 75 |
app:layout_constraintLeft_toLeftOf="parent"
|
82 |
app:layout_constraintRight_toRightOf="parent"
|
| 76 |
app:layout_constraintRight_toRightOf="parent"
|
83 |
app:layout_constraintTop_toBottomOf="@id/signin_textview_title"
|
| 77 |
app:layout_constraintTop_toBottomOf="@+id/textView10" />
|
84 |
app:layout_constraintWidth_percent="0.8" />
|
| - |
|
85 |
|
| 78 |
|
86 |
<EditText
|
| 79 |
<EditText
|
87 |
android:id="@+id/signin_edittext_password"
|
| - |
|
88 |
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
|
| - |
|
89 |
android:layout_width="match_parent"
|
| 80 |
android:id="@+id/signin_edittext_password"
|
90 |
android:layout_height="wrap_content"
|
| 81 |
style="@style/Widget.AppCompat.EditText"
|
91 |
android:layout_marginLeft="15dp"
|
| - |
|
92 |
android:layout_marginTop="52dp"
|
| - |
|
93 |
android:layout_marginRight="15dp"
|
| 82 |
android:layout_width="319dp"
|
94 |
android:ems="10"
|
| 83 |
android:layout_height="53dp"
|
95 |
android:hint="@string/signin_password"
|
| 84 |
android:layout_marginTop="20dp"
|
96 |
android:inputType="textPassword"
|
| 85 |
android:hint="@string/signin_password"
|
- |
|
| 86 |
android:inputType="textPassword"
|
- |
|
| 87 |
app:layout_constraintLeft_toLeftOf="parent"
|
- |
|
| 88 |
app:layout_constraintRight_toRightOf="parent"
|
- |
|
| 89 |
app:layout_constraintTop_toBottomOf="@+id/textView11" />
|
- |
|
| 90 |
|
- |
|
| 91 |
<TextView
|
- |
|
| 92 |
android:id="@+id/textView11"
|
- |
|
| 93 |
android:layout_width="wrap_content"
|
97 |
android:textColorHint="@color/colorAccent"
|
| 94 |
android:layout_height="wrap_content"
|
- |
|
| 95 |
android:layout_marginTop="8dp"
|
- |
|
| 96 |
android:text="Contraseña:"
|
- |
|
| Línea 97... |
Línea 98... |
| 97 |
android:textColor="@color/colorTextColor"
|
98 |
app:layout_constraintHorizontal_bias="0.0"
|
| 98 |
app:layout_constraintEnd_toEndOf="parent"
|
99 |
app:layout_constraintLeft_toLeftOf="parent"
|
| 99 |
app:layout_constraintHorizontal_bias="0.154"
|
100 |
app:layout_constraintRight_toRightOf="parent"
|
| 100 |
app:layout_constraintStart_toStartOf="parent"
|
101 |
app:layout_constraintTop_toBottomOf="@id/signin_edittext_email"
|
| 101 |
app:layout_constraintTop_toBottomOf="@+id/signin_edittext_email" />
|
102 |
app:layout_constraintWidth_percent="0.8" />
|
| 102 |
|
103 |
|
| - |
|
104 |
<Button
|
| - |
|
105 |
android:id="@+id/signin_button_sign_in"
|
| 103 |
<Button
|
106 |
android:layout_width="match_parent"
|
| 104 |
android:id="@+id/signin_button_sign_in"
|
107 |
android:layout_height="wrap_content"
|
| 105 |
style="@style/Widget.AppCompat.Button"
|
- |
|
| 106 |
android:layout_width="320dp"
|
108 |
android:layout_marginLeft="15dp"
|
| 107 |
android:layout_height="55dp"
|
109 |
android:layout_marginTop="20dp"
|
| 108 |
android:layout_marginTop="60dp"
|
- |
|
| 109 |
android:elevation="5dp"
|
110 |
android:layout_marginRight="15dp"
|
| - |
|
111 |
android:background="@color/buttonGalleryLauncherBackground"
|
| 110 |
android:fontFamily="sans-serif"
|
112 |
android:elevation="5dp"
|
| 111 |
android:padding="5dp"
|
113 |
android:fontFamily="sans-serif"
|
| 112 |
android:text="INGRESAR"
|
114 |
android:text="@string/signin_sign_in"
|
| 113 |
android:textColor="@color/colorTextColor"
|
115 |
android:textColor="@color/colorTextColor"
|
| - |
|
116 |
android:textSize="14dp"
|
| 114 |
android:textColorLink="@color/cardviewBackground"
|
117 |
app:layout_constraintBottom_toBottomOf="parent"
|
| Línea 115... |
Línea 118... |
| 115 |
android:textSize="14dp"
|
118 |
app:layout_constraintHorizontal_bias="0.482"
|
| 116 |
app:layout_constraintHorizontal_bias="0.495"
|
119 |
app:layout_constraintLeft_toLeftOf="parent"
|
| 117 |
app:layout_constraintLeft_toLeftOf="parent"
|
- |
|
| 118 |
app:layout_constraintRight_toRightOf="parent"
|
120 |
app:layout_constraintRight_toRightOf="parent"
|
| 119 |
app:layout_constraintTop_toBottomOf="@id/signin_edittext_password"
|
121 |
app:layout_constraintTop_toBottomOf="@id/signin_edittext_password"
|
| 120 |
app:layout_constraintWidth_percent="0.5" />
|
122 |
app:layout_constraintVertical_bias="0.239"
|
| - |
|
123 |
app:layout_constraintWidth_percent="0.5" />
|
| 121 |
|
124 |
|
| 122 |
<Button
|
125 |
<Button
|
| 123 |
android:id="@+id/signin_button_sign_up"
|
126 |
android:id="@+id/signin_button_sign_up"
|
| 124 |
style="@style/Widget.AppCompat.Button"
|
127 |
android:layout_width="0dp"
|
| 125 |
android:layout_width="320dp"
|
- |
|
| 126 |
android:layout_height="55dp"
|
128 |
android:layout_height="wrap_content"
|
| 127 |
android:layout_marginTop="20dp"
|
129 |
android:layout_marginTop="20dp"
|
| 128 |
android:elevation="5dp"
|
130 |
android:background="@drawable/rounded_button_intro"
|
| 129 |
android:fontFamily="sans-serif"
|
131 |
android:elevation="5dp"
|
| 130 |
android:padding="5dp"
|
132 |
android:fontFamily="sans-serif"
|
| 131 |
android:text="REGISTRARME"
|
133 |
android:padding="5dp"
|
| Línea 132... |
Línea -... |
| 132 |
android:textColor="@color/buttonIntroBackground"
|
- |
|
| 133 |
android:textSize="14dp"
|
- |
|
| 134 |
app:layout_constraintHorizontal_bias="0.495"
|
- |
|
| 135 |
app:layout_constraintLeft_toLeftOf="parent"
|
- |
|
| 136 |
app:layout_constraintRight_toRightOf="parent"
|
- |
|
| 137 |
app:layout_constraintTop_toBottomOf="@id/signin_button_sign_in"
|
- |
|
| 138 |
app:layout_constraintWidth_percent="0.5" />
|
- |
|
| 139 |
|
- |
|
| 140 |
<TextView
|
- |
|
| 141 |
android:id="@+id/textView13"
|
- |
|
| 142 |
android:layout_width="wrap_content"
|
- |
|
| 143 |
android:layout_height="wrap_content"
|
- |
|
| 144 |
android:text="Olvidé mi contraseña"
|
- |
|
| 145 |
android:textColor="@color/colorPrimaryDark"
|
134 |
android:text="@string/signin_sign_up"
|
| 146 |
android:textSize="16sp"
|
135 |
android:textSize="14dp"
|
| 147 |
app:layout_constraintBottom_toBottomOf="parent"
|
136 |
android:visibility="gone"
|
| 148 |
app:layout_constraintEnd_toEndOf="parent"
|
137 |
app:layout_constraintLeft_toLeftOf="parent"
|
| 149 |
app:layout_constraintStart_toStartOf="parent"
|
138 |
app:layout_constraintRight_toRightOf="parent"
|
| Línea 160... |
Línea 149... |
| 160 |
app:layout_constraintBottom_toBottomOf="parent"
|
149 |
app:layout_constraintBottom_toBottomOf="parent"
|
| 161 |
app:layout_constraintLeft_toLeftOf="parent"
|
150 |
app:layout_constraintLeft_toLeftOf="parent"
|
| 162 |
app:layout_constraintRight_toRightOf="parent"
|
151 |
app:layout_constraintRight_toRightOf="parent"
|
| 163 |
app:layout_constraintTop_toTopOf="parent" />
|
152 |
app:layout_constraintTop_toTopOf="parent" />
|
| Línea 164... |
Línea -... |
| 164 |
|
- |
|
| 165 |
<TextView
|
- |
|
| 166 |
android:id="@+id/textView12"
|
- |
|
| 167 |
android:layout_width="wrap_content"
|
- |
|
| 168 |
android:layout_height="wrap_content"
|
- |
|
| 169 |
android:layout_marginTop="64dp"
|
- |
|
| 170 |
android:text="2GetSkills"
|
- |
|
| 171 |
android:textColor="@color/black"
|
- |
|
| 172 |
android:textSize="24sp"
|
- |
|
| 173 |
android:textStyle="bold"
|
- |
|
| 174 |
app:layout_constraintEnd_toEndOf="parent"
|
- |
|
| 175 |
app:layout_constraintHorizontal_bias="0.1"
|
- |
|
| 176 |
app:layout_constraintStart_toEndOf="@+id/signin_imageview_logo"
|
- |
|
| 177 |
app:layout_constraintTop_toTopOf="parent" />
|
- |
|
| 178 |
|
153 |
|