8 |
gabriel |
1 |
<?xml version="1.0" encoding="utf-8"?>
|
|
|
2 |
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
3 |
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
4 |
xmlns:tools="http://schemas.android.com/tools"
|
|
|
5 |
android:id="@+id/frameLayout3"
|
|
|
6 |
android:layout_width="match_parent"
|
|
|
7 |
android:layout_height="match_parent"
|
|
|
8 |
android:background="@drawable/ic_winbackground"
|
|
|
9 |
tools:context=".fragment.BiometricOptions">
|
|
|
10 |
|
|
|
11 |
<Button
|
|
|
12 |
android:id="@+id/huellasignin"
|
|
|
13 |
android:layout_width="match_parent"
|
|
|
14 |
android:layout_height="48dp"
|
|
|
15 |
android:layout_marginStart="15dp"
|
|
|
16 |
android:layout_marginEnd="15dp"
|
|
|
17 |
android:background="@drawable/rounded_primarynew_style"
|
|
|
18 |
android:elevation="5dp"
|
|
|
19 |
android:fontFamily="sans-serif"
|
|
|
20 |
android:text="@string/signin_biometric"
|
|
|
21 |
android:textAllCaps="false"
|
|
|
22 |
android:textColor="@color/colorTitleText"
|
|
|
23 |
android:textSize="16sp"
|
|
|
24 |
android:textStyle="bold"
|
9 |
gabriel |
25 |
app:layout_constraintBottom_toTopOf="@+id/signin_button_sign_up2"
|
8 |
gabriel |
26 |
app:layout_constraintEnd_toEndOf="parent"
|
9 |
gabriel |
27 |
app:layout_constraintHorizontal_bias="0.0"
|
8 |
gabriel |
28 |
app:layout_constraintStart_toStartOf="parent"
|
|
|
29 |
app:layout_constraintTop_toBottomOf="@+id/cardView3"
|
9 |
gabriel |
30 |
app:layout_constraintVertical_bias="0.806"
|
8 |
gabriel |
31 |
app:layout_constraintWidth_percent="0.5"
|
|
|
32 |
tools:visibility="visible" />
|
|
|
33 |
|
|
|
34 |
<ImageView
|
|
|
35 |
android:id="@+id/imageView7"
|
|
|
36 |
android:layout_width="wrap_content"
|
|
|
37 |
android:layout_height="wrap_content"
|
|
|
38 |
android:layout_marginTop="68dp"
|
|
|
39 |
android:src="@drawable/logoinconcert"
|
|
|
40 |
app:layout_constraintEnd_toEndOf="parent"
|
|
|
41 |
app:layout_constraintHorizontal_bias="0.498"
|
|
|
42 |
app:layout_constraintStart_toStartOf="parent"
|
|
|
43 |
app:layout_constraintTop_toTopOf="parent" />
|
|
|
44 |
|
|
|
45 |
<androidx.cardview.widget.CardView
|
|
|
46 |
android:id="@+id/cardView3"
|
|
|
47 |
android:layout_width="153dp"
|
|
|
48 |
android:layout_height="153dp"
|
9 |
gabriel |
49 |
android:layout_marginTop="68dp"
|
8 |
gabriel |
50 |
app:cardCornerRadius="30dp"
|
|
|
51 |
app:layout_constraintEnd_toEndOf="parent"
|
|
|
52 |
app:layout_constraintStart_toStartOf="parent"
|
|
|
53 |
app:layout_constraintTop_toBottomOf="@+id/textView21"
|
|
|
54 |
tools:visibility="visible">
|
|
|
55 |
|
|
|
56 |
<ImageView
|
|
|
57 |
android:id="@+id/imageView8"
|
|
|
58 |
android:layout_width="wrap_content"
|
|
|
59 |
android:layout_height="wrap_content"
|
|
|
60 |
android:layout_gravity="center"
|
|
|
61 |
android:src="@drawable/ic_union"
|
|
|
62 |
tools:src="@drawable/ic_union" />
|
|
|
63 |
</androidx.cardview.widget.CardView>
|
|
|
64 |
|
|
|
65 |
<TextView
|
|
|
66 |
android:id="@+id/textView21"
|
|
|
67 |
android:layout_width="wrap_content"
|
|
|
68 |
android:layout_height="wrap_content"
|
9 |
gabriel |
69 |
android:layout_marginTop="48dp"
|
8 |
gabriel |
70 |
android:fontFamily="@font/roboto_bold"
|
|
|
71 |
android:text="Hola Jhon"
|
|
|
72 |
android:textSize="32sp"
|
|
|
73 |
app:layout_constraintEnd_toEndOf="parent"
|
|
|
74 |
app:layout_constraintHorizontal_bias="0.498"
|
|
|
75 |
app:layout_constraintStart_toStartOf="parent"
|
|
|
76 |
app:layout_constraintTop_toBottomOf="@+id/imageView7" />
|
|
|
77 |
|
|
|
78 |
<Button
|
|
|
79 |
android:id="@+id/signin_button_sign_up2"
|
|
|
80 |
android:layout_width="match_parent"
|
|
|
81 |
android:layout_height="48dp"
|
|
|
82 |
android:layout_marginStart="15dp"
|
|
|
83 |
android:layout_marginEnd="15dp"
|
9 |
gabriel |
84 |
android:layout_marginBottom="32dp"
|
8 |
gabriel |
85 |
android:background="@drawable/edit_rounded_style"
|
|
|
86 |
android:elevation="5dp"
|
|
|
87 |
android:fontFamily="sans-serif"
|
|
|
88 |
android:padding="5dp"
|
|
|
89 |
android:text="@string/signin_biometric_omit"
|
|
|
90 |
android:textAllCaps="false"
|
|
|
91 |
android:textColor="@color/colorPrincipalNew"
|
|
|
92 |
android:textSize="16sp"
|
|
|
93 |
android:textStyle="bold"
|
|
|
94 |
android:visibility="visible"
|
9 |
gabriel |
95 |
app:layout_constraintBottom_toBottomOf="parent"
|
8 |
gabriel |
96 |
app:layout_constraintEnd_toEndOf="parent"
|
9 |
gabriel |
97 |
app:layout_constraintHorizontal_bias="0.0"
|
8 |
gabriel |
98 |
app:layout_constraintStart_toStartOf="parent"
|
|
|
99 |
app:layout_constraintWidth_percent="0.5"
|
|
|
100 |
tools:visibility="visible" />
|
|
|
101 |
</androidx.constraintlayout.widget.ConstraintLayout>
|