Proyectos de Subversion Android Microlearning - Nuevo Interface

Rev

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

Rev Autor Línea Nro. Línea
9 gabriel 1
<?xml version="1.0" encoding="utf-8"?>
10 gabriel 2
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
3
    xmlns:app="http://schemas.android.com/apk/res-auto"
9 gabriel 4
    xmlns:tools="http://schemas.android.com/tools"
10 gabriel 5
    android:id="@+id/frameLayout2"
9 gabriel 6
    android:layout_width="match_parent"
7
    android:layout_height="match_parent"
10 gabriel 8
    android:background="@color/backgroundTopicProgressBar"
9
    tools:context=".fragment.NotificationCenter" >
9 gabriel 10
 
11 gabriel 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"
25 gabriel 17
        app:layout_constraintHorizontal_bias="0.0"
11 gabriel 18
        app:layout_constraintStart_toStartOf="parent"
56 gabriel 19
        app:layout_constraintTop_toTopOf="parent" />
11 gabriel 20
 
21
    <TextView
10 gabriel 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"
11 gabriel 30
        app:layout_constraintTop_toTopOf="parent"
31
        tools:visibility="gone" />
25 gabriel 32
 
56 gabriel 33
</androidx.constraintlayout.widget.ConstraintLayout>