Proyectos de Subversion Android Microlearning - Inconcert

Rev

Rev 1 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
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
    <androidx.recyclerview.widget.RecyclerView
12
        android:id="@+id/notificacioneslista"
13
        android:layout_width="0dp"
14
        android:layout_height="0dp"
15
        app:layout_constraintBottom_toBottomOf="parent"
16
        app:layout_constraintEnd_toEndOf="parent"
17
        app:layout_constraintHorizontal_bias="0.0"
18
        app:layout_constraintStart_toStartOf="parent"
7 gabriel 19
        app:layout_constraintTop_toTopOf="parent" />
1 gabriel 20
 
21
    <TextView
22
        android:id="@+id/textView18"
23
        android:layout_width="wrap_content"
24
        android:layout_height="wrap_content"
25
        android:text="No tienes notificaciones aún."
26
        android:textColor="@color/colorTextColor"
27
        app:layout_constraintBottom_toBottomOf="parent"
28
        app:layout_constraintEnd_toEndOf="parent"
29
        app:layout_constraintStart_toStartOf="parent"
30
        app:layout_constraintTop_toTopOf="parent"
31
        tools:visibility="gone" />
32
 
33
</androidx.constraintlayout.widget.ConstraintLayout>