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