Shelter/app/src/main/res/layout/fragment_list.xml
Peter Cai 6db4f84d35 AppListFragment: ConstraintLayout cannot be the parent of SwipeRefreshLayout
It causes problems with click events. Just use plain old FrameLayout for
this fragment.
2022-08-27 16:04:31 -04:00

19 lines
721 B
XML

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
android:id="@+id/fragment_swipe_refresh"
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.recyclerview.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/fragment_list_recycler_view"
android:scrollbars="vertical" />
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
</FrameLayout>