mirror of
https://github.com/szkolny-eu/szkolny-android.git
synced 2025-04-11 10:42:26 +02:00
30 lines
1.2 KiB
XML
30 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/notificationsView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:listitem="@layout/row_notifications_item"
|
|
tools:visibility="gone" />
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
android:id="@+id/notificationsNoData"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
app:drawableTopCompat="@drawable/ic_no_notifications"
|
|
android:drawablePadding="16dp"
|
|
android:fontFamily="sans-serif-light"
|
|
android:text="@string/notifications_no_data"
|
|
android:textSize="24sp"
|
|
android:visibility="gone"
|
|
tools:visibility="visible" />
|
|
|
|
</FrameLayout>
|
|
</layout> |