1
0
Fork 0
mirror of https://github.com/KokaKiwi/BarInsta synced 2026-03-05 12:01:35 +00:00

wip: archive and feed stories as a list

This commit is contained in:
Austin Huang 2020-12-29 15:19:00 -05:00
parent 2cc8a6e6b0
commit 6e4fa9fdbf
No known key found for this signature in database
GPG key ID: 84C23AA04587A91F
20 changed files with 579 additions and 15 deletions

View file

@ -0,0 +1,15 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/swipeRefreshLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".fragments.StoryListViewerFragment">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/rvStories"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
tools:listitem="@layout/item_notification" />
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>