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:id="@+id/frameLayout2"
|
|
|
6 |
android:layout_width="match_parent"
|
|
|
7 |
android:layout_height="match_parent"
|
|
|
8 |
android:background="@color/backgroundTopicProgressBar"
|
|
|
9 |
tools:context=".fragment.NotificationCenter" >
|
|
|
10 |
|
|
|
11 |
<TextView
|
|
|
12 |
android:id="@+id/textView17"
|
|
|
13 |
android:layout_width="wrap_content"
|
|
|
14 |
android:layout_height="wrap_content"
|
|
|
15 |
android:fontFamily="@font/roboto"
|
|
|
16 |
android:text="Hoy"
|
|
|
17 |
android:textColor="@color/colorTextColor"
|
|
|
18 |
android:textSize="16sp"
|
|
|
19 |
android:textStyle="bold"
|
|
|
20 |
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
21 |
app:layout_constraintEnd_toEndOf="parent"
|
|
|
22 |
app:layout_constraintHorizontal_bias="0.076"
|
|
|
23 |
app:layout_constraintStart_toStartOf="parent"
|
|
|
24 |
app:layout_constraintTop_toTopOf="parent"
|
|
|
25 |
app:layout_constraintVertical_bias="0.035" />
|
|
|
26 |
|
|
|
27 |
<androidx.recyclerview.widget.RecyclerView
|
|
|
28 |
android:id="@+id/notificacioneslista"
|
|
|
29 |
android:layout_width="0dp"
|
|
|
30 |
android:layout_height="0dp"
|
|
|
31 |
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
32 |
app:layout_constraintEnd_toEndOf="parent"
|
|
|
33 |
app:layout_constraintHorizontal_bias="0.0"
|
|
|
34 |
app:layout_constraintStart_toStartOf="parent"
|
|
|
35 |
app:layout_constraintTop_toBottomOf="@+id/textView17"
|
|
|
36 |
app:layout_constraintVertical_bias="0.036" />
|
|
|
37 |
|
|
|
38 |
<TextView
|
|
|
39 |
android:id="@+id/textView18"
|
|
|
40 |
android:layout_width="wrap_content"
|
|
|
41 |
android:layout_height="wrap_content"
|
|
|
42 |
android:text="No tienes notificaciones aún."
|
|
|
43 |
android:textColor="@color/colorTextColor"
|
|
|
44 |
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
45 |
app:layout_constraintEnd_toEndOf="parent"
|
|
|
46 |
app:layout_constraintStart_toStartOf="parent"
|
|
|
47 |
app:layout_constraintTop_toTopOf="parent"
|
|
|
48 |
tools:visibility="gone" />
|
|
|
49 |
|
|
|
50 |
</androidx.constraintlayout.widget.ConstraintLayout>
|