| Línea 8... |
Línea 8... |
| 8 |
android:orientation="horizontal"
|
8 |
android:orientation="horizontal"
|
| 9 |
android:visibility="visible">
|
9 |
android:visibility="visible">
|
| Línea 10... |
Línea 10... |
| 10 |
|
10 |
|
| 11 |
<!-- A CardView that contains a TextView -->
|
11 |
<!-- A CardView that contains a TextView -->
|
| 12 |
<androidx.cardview.widget.CardView
|
12 |
<androidx.cardview.widget.CardView
|
| 13 |
android:id="@+id/card_notifi"
|
13 |
android:id="@+id/cardview_item_widget"
|
| 14 |
android:layout_width="0dp"
|
14 |
android:layout_width="0dp"
|
| 15 |
android:layout_height="wrap_content"
|
15 |
android:layout_height="wrap_content"
|
| 16 |
android:layout_gravity="center"
|
16 |
android:layout_gravity="center"
|
| 17 |
app:cardBackgroundColor="@color/colorTextColor"
|
17 |
app:cardBackgroundColor="@color/colorTextColor"
|
| Línea 31... |
Línea 31... |
| 31 |
android:paddingTop="10dp"
|
31 |
android:paddingTop="10dp"
|
| 32 |
android:paddingEnd="5dp"
|
32 |
android:paddingEnd="5dp"
|
| 33 |
android:paddingBottom="10dp">
|
33 |
android:paddingBottom="10dp">
|
| Línea 34... |
Línea 34... |
| 34 |
|
34 |
|
| 35 |
<TextView
|
35 |
<TextView
|
| 36 |
android:id="@+id/titlenotifi"
|
36 |
android:id="@+id/cardview_item_textview_status"
|
| 37 |
android:layout_width="210dp"
|
37 |
android:layout_width="210dp"
|
| 38 |
android:layout_height="wrap_content"
|
38 |
android:layout_height="wrap_content"
|
| 39 |
android:text="En curso"
|
39 |
android:text="@string/common_in_progress"
|
| 40 |
android:textColor="@color/colorPrimary"
|
40 |
android:textColor="@color/colorPrimary"
|
| 41 |
android:textSize="16sp"
|
41 |
android:textSize="16sp"
|
| 42 |
android:textStyle="bold"
|
42 |
android:textStyle="bold"
|
| 43 |
app:layout_constraintBottom_toBottomOf="parent"
|
43 |
app:layout_constraintBottom_toBottomOf="parent"
|
| Línea 46... |
Línea 46... |
| 46 |
app:layout_constraintStart_toStartOf="parent"
|
46 |
app:layout_constraintStart_toStartOf="parent"
|
| 47 |
app:layout_constraintTop_toTopOf="parent"
|
47 |
app:layout_constraintTop_toTopOf="parent"
|
| 48 |
app:layout_constraintVertical_bias="0.0" />
|
48 |
app:layout_constraintVertical_bias="0.0" />
|
| Línea 49... |
Línea 49... |
| 49 |
|
49 |
|
| 50 |
<TextView
|
50 |
<TextView
|
| 51 |
android:id="@+id/description"
|
51 |
android:id="@+id/cardview_item_textview_title"
|
| 52 |
android:layout_width="210dp"
|
52 |
android:layout_width="210dp"
|
| 53 |
android:layout_height="24dp"
|
53 |
android:layout_height="24dp"
|
| 54 |
android:layout_marginTop="12dp"
|
54 |
android:layout_marginTop="12dp"
|
| 55 |
android:fontFamily="sans-serif-medium"
|
55 |
android:fontFamily="sans-serif-medium"
|
| 56 |
android:textAlignment="viewStart"
|
56 |
android:textAlignment="viewStart"
|
| 57 |
android:textColor="@color/colorTitleText"
|
57 |
android:textColor="@color/colorTitleText"
|
| 58 |
android:textSize="16sp"
|
58 |
android:textSize="14sp"
|
| 59 |
android:textStyle="bold"
|
59 |
android:textStyle="bold"
|
| 60 |
app:layout_constraintBottom_toBottomOf="parent"
|
60 |
app:layout_constraintBottom_toBottomOf="parent"
|
| 61 |
app:layout_constraintEnd_toEndOf="parent"
|
61 |
app:layout_constraintEnd_toEndOf="parent"
|
| 62 |
app:layout_constraintHorizontal_bias="0.096"
|
62 |
app:layout_constraintHorizontal_bias="0.096"
|
| 63 |
app:layout_constraintStart_toStartOf="parent"
|
63 |
app:layout_constraintStart_toStartOf="parent"
|
| 64 |
app:layout_constraintTop_toTopOf="parent"
|
64 |
app:layout_constraintTop_toTopOf="parent"
|
| Línea 65... |
Línea 65... |
| 65 |
app:layout_constraintVertical_bias="0.175" />
|
65 |
app:layout_constraintVertical_bias="0.175" />
|
| 66 |
|
66 |
|
| 67 |
<ProgressBar
|
67 |
<ProgressBar
|
| 68 |
android:id="@+id/progressBar2"
|
68 |
android:id="@+id/cardview_item_progressbar"
|
| 69 |
style="?android:attr/progressBarStyleHorizontal"
|
69 |
style="?android:attr/progressBarStyleHorizontal"
|
| - |
|
70 |
android:layout_width="140dp"
|
| 70 |
android:layout_width="150dp"
|
71 |
android:layout_height="7dp"
|
| 71 |
android:layout_height="7dp"
|
72 |
android:layout_marginRight="5dp"
|
| 72 |
android:progressTint="@color/buttonIntroBackground"
|
73 |
android:progressTint="@color/buttonIntroBackground"
|
| 73 |
app:layout_constraintBottom_toBottomOf="parent"
|
74 |
app:layout_constraintBottom_toBottomOf="parent"
|
| 74 |
app:layout_constraintEnd_toEndOf="parent"
|
75 |
app:layout_constraintEnd_toEndOf="parent"
|
| 75 |
app:layout_constraintHorizontal_bias="0.071"
|
76 |
app:layout_constraintHorizontal_bias="0.071"
|
| 76 |
app:layout_constraintStart_toStartOf="parent"
|
77 |
app:layout_constraintStart_toStartOf="parent"
|
| Línea 77... |
Línea 78... |
| 77 |
app:layout_constraintTop_toTopOf="parent"
|
78 |
app:layout_constraintTop_toTopOf="parent"
|
| 78 |
app:layout_constraintVertical_bias="0.503" />
|
79 |
app:layout_constraintVertical_bias="0.503" />
|
| 79 |
|
80 |
|
| 80 |
<TextView
|
81 |
<TextView
|
| 81 |
android:id="@+id/textView16"
|
82 |
android:id="@+id/cardview_item_textview_progress"
|
| - |
|
83 |
android:layout_width="wrap_content"
|
| 82 |
android:layout_width="wrap_content"
|
84 |
android:layout_height="wrap_content"
|
| 83 |
android:layout_height="wrap_content"
|
85 |
android:text="100%"
|
| 84 |
android:text="100%"
|
86 |
android:layout_marginRight="5dp"
|
| 85 |
android:textColor="@color/backgroundTopicProgressBar"
|
87 |
android:textColor="@color/backgroundTopicProgressBar"
|
| 86 |
app:layout_constraintBottom_toBottomOf="parent"
|
88 |
app:layout_constraintBottom_toBottomOf="parent"
|
| 87 |
app:layout_constraintEnd_toEndOf="parent"
|
89 |
app:layout_constraintEnd_toEndOf="parent"
|
| 88 |
app:layout_constraintHorizontal_bias="0.052"
|
90 |
app:layout_constraintHorizontal_bias="0.052"
|
| Línea 89... |
Línea 91... |
| 89 |
app:layout_constraintStart_toEndOf="@+id/progressBar2"
|
91 |
app:layout_constraintStart_toEndOf="@+id/cardview_item_progressbar"
|
| 90 |
app:layout_constraintTop_toTopOf="parent"
|
92 |
app:layout_constraintTop_toTopOf="parent"
|
| 91 |
app:layout_constraintVertical_bias="0.503" />
|
93 |
app:layout_constraintVertical_bias="0.503" />
|
| 92 |
|
94 |
|
| 93 |
<androidx.cardview.widget.CardView
|
95 |
<androidx.cardview.widget.CardView
|
| 94 |
android:id="@+id/cardView"
|
96 |
android:id="@+id/cardview_item_image"
|
| 95 |
android:layout_width="100dp"
|
97 |
android:layout_width="100dp"
|
| 96 |
android:layout_height="130dp"
|
98 |
android:layout_height="130dp"
|
| 97 |
app:cardCornerRadius="8dp"
|
99 |
app:cardCornerRadius="8dp"
|
| 98 |
app:layout_constraintBottom_toBottomOf="parent"
|
100 |
app:layout_constraintBottom_toBottomOf="parent"
|
| Línea 99... |
Línea 101... |
| 99 |
app:layout_constraintEnd_toEndOf="parent"
|
101 |
app:layout_constraintEnd_toEndOf="parent"
|
| 100 |
app:layout_constraintHorizontal_bias="0.941"
|
102 |
app:layout_constraintHorizontal_bias="0.941"
|
| 101 |
app:layout_constraintStart_toStartOf="parent"
|
103 |
app:layout_constraintStart_toStartOf="parent"
|
| 102 |
app:layout_constraintTop_toTopOf="parent">
|
104 |
app:layout_constraintTop_toTopOf="parent">
|
| 103 |
|
105 |
|
| - |
|
106 |
<ImageView
|
| - |
|
107 |
android:id="@+id/cardview_item_imageview"
|
| 104 |
<ImageView
|
108 |
android:layout_width="match_parent"
|
| - |
|
109 |
android:layout_height="match_parent"
|
| 105 |
android:id="@+id/imagelist"
|
110 |
android:background="@drawable/round_outline"
|
| Línea 106... |
Línea 111... |
| 106 |
android:layout_width="match_parent"
|
111 |
/>
|
| 107 |
android:layout_height="match_parent"
|
112 |
<!--
|
| 108 |
android:background="@drawable/round_outline"
|
113 |
tools:visibility="gone"
|
| 109 |
tools:visibility="gone" />
|
114 |
-->
|
| 110 |
</androidx.cardview.widget.CardView>
|
115 |
</androidx.cardview.widget.CardView>
|
| 111 |
|
116 |
|
| 112 |
<Button
|
117 |
<Button
|
| 113 |
android:id="@+id/button"
|
118 |
android:id="@+id/cardview_item_button_continue"
|
| 114 |
android:layout_width="108dp"
|
119 |
android:layout_width="108dp"
|
| 115 |
android:layout_height="40dp"
|
120 |
android:layout_height="40dp"
|
| 116 |
android:layout_marginTop="5dp"
|
121 |
android:layout_marginTop="5dp"
|
| 117 |
android:background="@drawable/edit_rounded_style"
|
122 |
android:background="@drawable/edit_rounded_style"
|
| 118 |
android:fontFamily="@font/roboto"
|
123 |
android:fontFamily="@font/roboto"
|