Proyectos de Subversion Android Microlearning - Nuevo Interface

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
2 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"
4 gabriel 5
    android:layout_width="match_parent"
2 gabriel 6
    android:layout_height="wrap_content"
7
    android:focusable="true"
8
    android:orientation="horizontal"
9
    android:visibility="visible">
10
 
11
    <!-- A CardView that contains a TextView -->
12
    <androidx.cardview.widget.CardView
13
        android:id="@+id/card_view"
4 gabriel 14
        android:layout_width="0dp"
2 gabriel 15
        android:layout_height="wrap_content"
16
        android:layout_gravity="center"
4 gabriel 17
        app:cardBackgroundColor="@color/colorTextColor"
18
        app:cardCornerRadius="6dp"
2 gabriel 19
        app:cardElevation="9dp"
20
        app:cardUseCompatPadding="true"
21
        app:layout_constraintBottom_toBottomOf="parent"
22
        app:layout_constraintEnd_toEndOf="parent"
23
        app:layout_constraintStart_toStartOf="parent"
24
        app:layout_constraintTop_toTopOf="parent">
25
 
26
        <androidx.constraintlayout.widget.ConstraintLayout
4 gabriel 27
            android:layout_width="384dp"
28
            android:layout_height="176dp"
2 gabriel 29
            android:layout_margin="7dp"
30
            android:paddingStart="10dp"
31
            android:paddingTop="20dp"
32
            android:paddingEnd="10dp"
33
            android:paddingBottom="20dp">
34
 
35
            <TextView
36
                android:id="@+id/textView17"
37
                android:layout_width="wrap_content"
38
                android:layout_height="wrap_content"
39
                android:text="En curso"
4 gabriel 40
                android:textColor="@color/colorPrimaryDark"
2 gabriel 41
                android:textSize="16sp"
4 gabriel 42
                android:textStyle="bold"
2 gabriel 43
                app:layout_constraintStart_toStartOf="parent"
44
                app:layout_constraintTop_toTopOf="parent" />
45
 
46
            <TextView
47
                android:id="@+id/titleview"
4 gabriel 48
                android:layout_width="213dp"
49
                android:layout_height="39dp"
50
                android:layout_marginTop="4dp"
2 gabriel 51
                android:fontFamily="sans-serif-medium"
52
                android:textAlignment="viewStart"
53
                android:textColor="@color/colorTitleText"
54
                android:textSize="16sp"
55
                android:textStyle="bold"
56
                app:layout_constraintEnd_toStartOf="@+id/imagelist"
57
                app:layout_constraintHorizontal_bias="0.0"
58
                app:layout_constraintStart_toStartOf="parent"
59
                app:layout_constraintTop_toBottomOf="@+id/textView17" />
60
 
61
            <TextView
62
                android:id="@+id/progressview"
63
                android:layout_width="75sp"
64
                android:layout_height="wrap_content"
65
                android:fontFamily="sans-serif"
66
                android:textColor="@color/colorTitleText"
67
                android:textSize="14sp"
68
                app:layout_constraintBottom_toBottomOf="parent"
69
                app:layout_constraintEnd_toStartOf="@+id/imagelist"
70
                app:layout_constraintHorizontal_bias="0.0"
71
                app:layout_constraintStart_toStartOf="parent"
72
                app:layout_constraintTop_toBottomOf="@+id/titleview"
4 gabriel 73
                app:layout_constraintVertical_bias="0.0" />
2 gabriel 74
 
75
            <ImageView
76
                android:id="@+id/imagelist"
4 gabriel 77
                android:layout_width="122dp"
78
                android:layout_height="164dp"
79
                android:layout_marginEnd="20dp"
80
                android:background="@drawable/round_outline"
81
                android:outlineProvider="background"
2 gabriel 82
                app:layout_constraintBottom_toBottomOf="parent"
83
                app:layout_constraintEnd_toEndOf="parent"
84
                app:layout_constraintTop_toTopOf="parent"
4 gabriel 85
                app:layout_constraintVertical_bias="0.508" />
2 gabriel 86
 
87
            <Button
88
                android:id="@+id/button"
89
                android:layout_width="102dp"
90
                android:layout_height="43dp"
4 gabriel 91
                android:layout_marginTop="5dp"
92
                android:background="@color/windowBackgroud"
93
                android:fontFamily="@font/roboto"
2 gabriel 94
                android:text="Continuar"
4 gabriel 95
                android:textColor="@color/colorPrimary"
2 gabriel 96
                app:layout_constraintBottom_toBottomOf="parent"
97
                app:layout_constraintEnd_toStartOf="@+id/imagelist"
98
                app:layout_constraintHorizontal_bias="0.0"
99
                app:layout_constraintStart_toStartOf="parent"
100
                app:layout_constraintTop_toBottomOf="@+id/progressview"
4 gabriel 101
                app:layout_constraintVertical_bias="0.0" />
2 gabriel 102
        </androidx.constraintlayout.widget.ConstraintLayout>
103
 
104
    </androidx.cardview.widget.CardView>
105
</androidx.constraintlayout.widget.ConstraintLayout>