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"
8 gabriel 18
        app:cardCornerRadius="8dp"
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
8 gabriel 27
            android:layout_width="match_parent"
28
            android:layout_height="match_parent"
2 gabriel 29
            android:layout_margin="7dp"
9 gabriel 30
            android:paddingStart="5dp"
31
            android:paddingTop="10dp"
32
            android:paddingEnd="5dp"
33
            android:paddingBottom="10dp">
2 gabriel 34
 
35
            <TextView
11 gabriel 36
                android:id="@+id/titlenotifi"
10 gabriel 37
                android:layout_width="210dp"
2 gabriel 38
                android:layout_height="wrap_content"
39
                android:text="En curso"
8 gabriel 40
                android:textColor="@color/colorPrimary"
2 gabriel 41
                android:textSize="16sp"
4 gabriel 42
                android:textStyle="bold"
9 gabriel 43
                app:layout_constraintBottom_toBottomOf="parent"
44
                app:layout_constraintEnd_toEndOf="parent"
10 gabriel 45
                app:layout_constraintHorizontal_bias="0.096"
2 gabriel 46
                app:layout_constraintStart_toStartOf="parent"
9 gabriel 47
                app:layout_constraintTop_toTopOf="parent"
48
                app:layout_constraintVertical_bias="0.0" />
2 gabriel 49
 
50
            <TextView
11 gabriel 51
                android:id="@+id/description"
10 gabriel 52
                android:layout_width="210dp"
9 gabriel 53
                android:layout_height="24dp"
54
                android:layout_marginTop="12dp"
2 gabriel 55
                android:fontFamily="sans-serif-medium"
56
                android:textAlignment="viewStart"
57
                android:textColor="@color/colorTitleText"
58
                android:textSize="16sp"
59
                android:textStyle="bold"
9 gabriel 60
                app:layout_constraintBottom_toBottomOf="parent"
61
                app:layout_constraintEnd_toEndOf="parent"
10 gabriel 62
                app:layout_constraintHorizontal_bias="0.096"
2 gabriel 63
                app:layout_constraintStart_toStartOf="parent"
9 gabriel 64
                app:layout_constraintTop_toTopOf="parent"
65
                app:layout_constraintVertical_bias="0.175" />
2 gabriel 66
 
9 gabriel 67
            <ProgressBar
68
                android:id="@+id/progressBar2"
69
                style="?android:attr/progressBarStyleHorizontal"
70
                android:layout_width="150dp"
71
                android:layout_height="7dp"
72
                android:progressTint="@color/buttonIntroBackground"
73
                app:layout_constraintBottom_toBottomOf="parent"
74
                app:layout_constraintEnd_toEndOf="parent"
75
                app:layout_constraintHorizontal_bias="0.071"
76
                app:layout_constraintStart_toStartOf="parent"
77
                app:layout_constraintTop_toTopOf="parent"
78
                app:layout_constraintVertical_bias="0.503" />
79
 
2 gabriel 80
            <TextView
9 gabriel 81
                android:id="@+id/textView16"
82
                android:layout_width="wrap_content"
2 gabriel 83
                android:layout_height="wrap_content"
9 gabriel 84
                android:text="100%"
85
                android:textColor="@color/backgroundTopicProgressBar"
2 gabriel 86
                app:layout_constraintBottom_toBottomOf="parent"
9 gabriel 87
                app:layout_constraintEnd_toEndOf="parent"
88
                app:layout_constraintHorizontal_bias="0.052"
89
                app:layout_constraintStart_toEndOf="@+id/progressBar2"
90
                app:layout_constraintTop_toTopOf="parent"
91
                app:layout_constraintVertical_bias="0.503" />
2 gabriel 92
 
8 gabriel 93
            <androidx.cardview.widget.CardView
94
                android:id="@+id/cardView"
95
                android:layout_width="100dp"
96
                android:layout_height="130dp"
97
                app:cardCornerRadius="8dp"
2 gabriel 98
                app:layout_constraintBottom_toBottomOf="parent"
99
                app:layout_constraintEnd_toEndOf="parent"
9 gabriel 100
                app:layout_constraintHorizontal_bias="0.941"
101
                app:layout_constraintStart_toStartOf="parent"
8 gabriel 102
                app:layout_constraintTop_toTopOf="parent">
2 gabriel 103
 
8 gabriel 104
                <ImageView
105
                    android:id="@+id/imagelist"
106
                    android:layout_width="match_parent"
107
                    android:layout_height="match_parent"
9 gabriel 108
                    android:background="@drawable/round_outline"
109
                    tools:visibility="gone" />
8 gabriel 110
            </androidx.cardview.widget.CardView>
111
 
2 gabriel 112
            <Button
113
                android:id="@+id/button"
9 gabriel 114
                android:layout_width="108dp"
115
                android:layout_height="40dp"
4 gabriel 116
                android:layout_marginTop="5dp"
8 gabriel 117
                android:background="@drawable/edit_rounded_style"
4 gabriel 118
                android:fontFamily="@font/roboto"
2 gabriel 119
                android:text="Continuar"
8 gabriel 120
                android:textAllCaps="false"
4 gabriel 121
                android:textColor="@color/colorPrimary"
8 gabriel 122
                android:textSize="16sp"
123
                android:textStyle="bold"
2 gabriel 124
                app:layout_constraintBottom_toBottomOf="parent"
9 gabriel 125
                app:layout_constraintEnd_toEndOf="parent"
126
                app:layout_constraintHorizontal_bias="0.059"
2 gabriel 127
                app:layout_constraintStart_toStartOf="parent"
9 gabriel 128
                app:layout_constraintTop_toTopOf="parent"
129
                app:layout_constraintVertical_bias="0.904" />
2 gabriel 130
        </androidx.constraintlayout.widget.ConstraintLayout>
131
 
132
    </androidx.cardview.widget.CardView>
133
</androidx.constraintlayout.widget.ConstraintLayout>