diff options
Diffstat (limited to 'app/src/main/res/layout/fragment_sidebar.xml')
-rw-r--r-- | app/src/main/res/layout/fragment_sidebar.xml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/app/src/main/res/layout/fragment_sidebar.xml b/app/src/main/res/layout/fragment_sidebar.xml new file mode 100644 index 00000000..118bbd0e --- /dev/null +++ b/app/src/main/res/layout/fragment_sidebar.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="utf-8"?> +<androidx.coordinatorlayout.widget.CoordinatorLayout 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" + android:layout_width="match_parent" + android:layout_height="match_parent" + tools:application="ml.docilealligator.infinityforreddit.Fragment.SidebarFragment"> + + <androidx.swiperefreshlayout.widget.SwipeRefreshLayout + android:id="@+id/swipe_refresh_layout_sidebar_fragment" + android:layout_width="match_parent" + android:layout_height="match_parent" + app:layout_behavior="@string/appbar_scrolling_view_behavior"> + + <androidx.recyclerview.widget.RecyclerView + android:id="@+id/markdown_recycler_view_sidebar_fragment" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:padding="16dp" + android:clipToPadding="false" /> + + </androidx.swiperefreshlayout.widget.SwipeRefreshLayout> + +</androidx.coordinatorlayout.widget.CoordinatorLayout>
\ No newline at end of file |