Pixelcat-App-Android/app/src/main/res/layout/fragment_notifications.xml

38 lines
1.6 KiB
XML
Raw Normal View History

2020-06-12 15:44:45 +02:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:orientation="vertical">
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:navigationIcon="@drawable/ic_cat_small"
2020-09-14 17:58:02 +02:00
app:title="@string/title_notifications"
2020-06-12 15:44:45 +02:00
app:titleTextAppearance="@style/TextAppearanceToolbar"
app:titleTextColor="?attr/colorPrimary" />
</com.google.android.material.appbar.AppBarLayout>
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
2020-09-14 17:58:02 +02:00
android:id="@+id/notificationSwipeRefresh"
2020-06-12 15:44:45 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.recyclerview.widget.RecyclerView
2020-09-14 17:58:02 +02:00
android:id="@+id/notificationRecyclerView"
2020-06-12 15:44:45 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />
2020-09-14 17:58:02 +02:00
2020-06-12 15:44:45 +02:00
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
2020-09-14 17:58:02 +02:00
2020-06-12 15:44:45 +02:00
</LinearLayout>