NewsBlur-viq/clients/android/NewsBlur/res/layout/activity_notifications.xml
sictiru 8fd423182e
Notification settings (#14)
Global notification settings.
2022-09-14 21:52:41 -07:00

29 lines
No EOL
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:animateLayoutChanges="true"
android:orientation="vertical">
<include layout="@layout/toolbar_newsblur" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycler_view_feeds"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/txt_no_notifications"
style="?defaultText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="48dp"
android:gravity="center"
android:text="@string/no_feed_notifications"
android:textSize="15sp"
android:visibility="gone" />
</androidx.appcompat.widget.LinearLayoutCompat>