Proyectos de Subversion Android Microlearning

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?xml version="1.0" encoding="utf-8"?>
2
<ScrollView 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
 
6
android:layout_width="match_parent"
7
android:layout_height="match_parent"
8
android:background="@color/windowBackgroud"
9
android:fillViewport="true"
10
android:fitsSystemWindows="true"
11
android:padding="20dp"
12
tools:context=".fragment.SigninFragment">
13
 
14
 
15
<androidx.constraintlayout.widget.ConstraintLayout
16
    android:orientation="vertical"
17
    android:layout_width="match_parent"
18
    android:layout_height="match_parent">
19
 
20
    <ImageView
21
        android:id="@+id/account_activation_imageview_logo"
22
        android:layout_width="0dp"
23
        android:layout_height="0dp"
24
        app:layout_constraintLeft_toLeftOf="parent"
25
        app:layout_constraintRight_toRightOf="parent"
26
        app:layout_constraintTop_toTopOf="parent"
27
        app:layout_constraintWidth_percent="0.4"
28
        app:layout_constraintHeight_percent="0.3"
29
        app:srcCompat="@drawable/ic_logo" />
30
 
31
    <TextView
32
        style="@style/textview_title1"
33
        android:id="@+id/signin_textview_title"
34
        android:layout_width="wrap_content"
35
        android:layout_height="wrap_content"
36
        android:layout_marginTop="20dp"
37
        android:fontFamily="@font/roboto_bold"
38
        android:text="@string/account_activation_title"
39
        app:layout_constraintLeft_toLeftOf="parent"
40
        app:layout_constraintRight_toRightOf="parent"
41
        app:layout_constraintTop_toBottomOf="@id/account_activation_imageview_logo" />
42
 
43
    <EditText
44
        style="@style/edittext_intro"
45
        android:id="@+id/account_activation_edittext_code"
46
        android:layout_width="0dp"
47
        android:layout_height="wrap_content"
48
        android:layout_marginTop="20dp"
49
        android:ems="10"
50
        android:maxLength="6"
51
        android:inputType="text"
52
        android:hint="@string/account_activation_label_activation_key"
53
        app:layout_constraintWidth_percent="0.8"
54
        app:layout_constraintLeft_toLeftOf="parent"
55
        app:layout_constraintRight_toRightOf="parent"
56
        app:layout_constraintTop_toBottomOf="@id/signin_textview_title" />
57
 
58
 
59
    <Button
60
        style="@style/button_intro"
61
        android:id="@+id/account_activation_button_sign_in"
62
        android:layout_width="0dp"
63
        android:layout_height="wrap_content"
64
        android:layout_marginTop="20dp"
65
        android:text="@string/account_activation_label_activate"
66
        app:layout_constraintLeft_toLeftOf="parent"
67
        app:layout_constraintRight_toRightOf="parent"
68
        app:layout_constraintTop_toBottomOf="@id/account_activation_edittext_code"
69
        app:layout_constraintWidth_percent="0.5" />
70
 
71
 
72
 
73
</androidx.constraintlayout.widget.ConstraintLayout>
74
 
75
</ScrollView>