| Línea 2... |
Línea 2... |
| 2 |
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2 |
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
| 3 |
xmlns:app="http://schemas.android.com/apk/res-auto"
|
3 |
xmlns:app="http://schemas.android.com/apk/res-auto"
|
| 4 |
xmlns:tools="http://schemas.android.com/tools"
|
4 |
xmlns:tools="http://schemas.android.com/tools"
|
| 5 |
android:layout_width="match_parent"
|
5 |
android:layout_width="match_parent"
|
| 6 |
android:layout_height="wrap_content"
|
6 |
android:layout_height="wrap_content"
|
| - |
|
7 |
android:clickable="true"
|
| 7 |
android:focusable="true"
|
8 |
android:focusable="true"
|
| 8 |
android:orientation="horizontal"
|
9 |
android:orientation="horizontal"
|
| 9 |
android:visibility="visible">
|
10 |
android:visibility="visible">
|
| Línea 10... |
Línea 11... |
| 10 |
|
11 |
|
| 11 |
<!-- A CardView that contains a TextView -->
|
12 |
<!-- A CardView that contains a TextView -->
|
| 12 |
<androidx.cardview.widget.CardView
|
13 |
<androidx.cardview.widget.CardView
|
| 13 |
android:id="@+id/card_view"
|
14 |
android:id="@+id/card_view"
|
| 14 |
android:layout_width="0dp"
|
15 |
android:layout_width="0dp"
|
| 15 |
android:layout_height="wrap_content"
|
16 |
android:layout_height="wrap_content"
|
| - |
|
17 |
android:layout_gravity="center"
|
| 16 |
android:layout_gravity="center"
|
18 |
android:clickable="true"
|
| 17 |
app:cardBackgroundColor="@color/white"
|
19 |
app:cardBackgroundColor="@color/white"
|
| 18 |
app:cardUseCompatPadding="true"
|
20 |
app:cardUseCompatPadding="true"
|
| 19 |
app:layout_constraintBottom_toBottomOf="parent"
|
21 |
app:layout_constraintBottom_toBottomOf="parent"
|
| 20 |
app:layout_constraintEnd_toEndOf="parent"
|
22 |
app:layout_constraintEnd_toEndOf="parent"
|
| Línea 28... |
Línea 30... |
| 28 |
android:paddingTop="20dp"
|
30 |
android:paddingTop="20dp"
|
| 29 |
android:paddingEnd="10dp"
|
31 |
android:paddingEnd="10dp"
|
| 30 |
android:paddingBottom="20dp">
|
32 |
android:paddingBottom="20dp">
|
| Línea 31... |
Línea 33... |
| 31 |
|
33 |
|
| 32 |
<TextView
|
34 |
<TextView
|
| 33 |
android:id="@+id/titleview"
|
35 |
android:id="@+id/description"
|
| 34 |
android:layout_width="213dp"
|
36 |
android:layout_width="0dp"
|
| 35 |
android:layout_height="39dp"
|
37 |
android:layout_height="39dp"
|
| 36 |
android:layout_marginStart="8dp"
|
38 |
android:layout_marginStart="8dp"
|
| 37 |
android:layout_marginTop="4dp"
|
39 |
android:layout_marginTop="4dp"
|
| 38 |
android:fontFamily="sans-serif-medium"
|
40 |
android:fontFamily="sans-serif-medium"
|
| 39 |
android:textAlignment="viewStart"
|
41 |
android:textAlignment="viewStart"
|
| 40 |
android:textColor="@color/colorTextColor"
|
42 |
android:textColor="@color/colorTextColor"
|
| 41 |
android:textSize="16sp"
|
43 |
android:textSize="16sp"
|
| 42 |
android:textStyle="bold"
|
44 |
android:textStyle="bold"
|
| 43 |
app:layout_constraintEnd_toEndOf="parent"
|
- |
|
| 44 |
app:layout_constraintHorizontal_bias="0.085"
|
45 |
app:layout_constraintEnd_toStartOf="@+id/button"
|
| 45 |
app:layout_constraintStart_toEndOf="@+id/cardView2"
|
46 |
app:layout_constraintStart_toEndOf="@+id/cardView2"
|
| 46 |
app:layout_constraintTop_toTopOf="parent"
|
47 |
app:layout_constraintTop_toTopOf="parent"
|
| Línea 47... |
Línea 48... |
| 47 |
tools:text="Titulo de capsula" />
|
48 |
tools:text="Titulo de capsula" />
|
| 48 |
|
49 |
|
| 49 |
<TextView
|
50 |
<TextView
|
| 50 |
android:id="@+id/progressview"
|
51 |
android:id="@+id/progressview"
|
| - |
|
52 |
android:layout_width="0dp"
|
| 51 |
android:layout_width="wrap_content"
|
53 |
android:layout_height="wrap_content"
|
| 52 |
android:layout_height="wrap_content"
|
54 |
android:layout_marginStart="8dp"
|
| 53 |
android:fontFamily="sans-serif"
|
55 |
android:fontFamily="sans-serif"
|
| 54 |
android:textColor="@color/colorTextColor"
|
56 |
android:textColor="@color/colorTextColor"
|
| 55 |
android:textSize="14sp"
|
57 |
android:textSize="14sp"
|
| 56 |
app:layout_constraintBottom_toBottomOf="parent"
|
58 |
app:layout_constraintBottom_toBottomOf="parent"
|
| 57 |
app:layout_constraintEnd_toEndOf="parent"
|
59 |
app:layout_constraintEnd_toEndOf="parent"
|
| 58 |
app:layout_constraintHorizontal_bias="0.074"
|
60 |
app:layout_constraintHorizontal_bias="0.038"
|
| 59 |
app:layout_constraintStart_toEndOf="@+id/cardView2"
|
61 |
app:layout_constraintStart_toEndOf="@+id/cardView2"
|
| 60 |
app:layout_constraintTop_toBottomOf="@+id/titleview"
|
62 |
app:layout_constraintTop_toBottomOf="@+id/description"
|
| Línea 61... |
Línea 63... |
| 61 |
app:layout_constraintVertical_bias="0.0"
|
63 |
app:layout_constraintVertical_bias="0.0"
|
| 62 |
tools:text="Progreso capsula" />
|
64 |
tools:text="Progreso capsula" />
|
| Línea 86... |
Línea 88... |
| 86 |
android:backgroundTint="@color/black"
|
88 |
android:backgroundTint="@color/black"
|
| 87 |
android:fontFamily="@font/roboto"
|
89 |
android:fontFamily="@font/roboto"
|
| 88 |
android:textColor="@color/colorPrimary"
|
90 |
android:textColor="@color/colorPrimary"
|
| 89 |
app:layout_constraintBottom_toBottomOf="parent"
|
91 |
app:layout_constraintBottom_toBottomOf="parent"
|
| 90 |
app:layout_constraintEnd_toEndOf="parent"
|
92 |
app:layout_constraintEnd_toEndOf="parent"
|
| 91 |
app:layout_constraintHorizontal_bias="0.512"
|
- |
|
| 92 |
app:layout_constraintStart_toEndOf="@+id/titleview"
|
- |
|
| 93 |
app:layout_constraintTop_toTopOf="parent"
|
93 |
app:layout_constraintTop_toTopOf="parent"
|
| 94 |
app:layout_constraintVertical_bias="0.16" />
|
94 |
app:layout_constraintVertical_bias="0.16" />
|
| 95 |
</androidx.constraintlayout.widget.ConstraintLayout>
|
95 |
</androidx.constraintlayout.widget.ConstraintLayout>
|
| Línea 96... |
Línea 96... |
| 96 |
|
96 |
|