From 6db4f84d35bcd970dbf133a1be0338116b3d0e31 Mon Sep 17 00:00:00 2001 From: Peter Cai Date: Sat, 27 Aug 2022 16:04:31 -0400 Subject: [PATCH] AppListFragment: ConstraintLayout cannot be the parent of SwipeRefreshLayout It causes problems with click events. Just use plain old FrameLayout for this fragment. --- .idea/misc.xml | 1 + app/src/main/res/layout/fragment_list.xml | 13 ++++--------- 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/.idea/misc.xml b/.idea/misc.xml index 05b94b4..ea3a166 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -8,6 +8,7 @@ + diff --git a/app/src/main/res/layout/fragment_list.xml b/app/src/main/res/layout/fragment_list.xml index d2cfa48..cd95a78 100644 --- a/app/src/main/res/layout/fragment_list.xml +++ b/app/src/main/res/layout/fragment_list.xml @@ -1,17 +1,12 @@ - + android:layout_width="match_parent" + android:layout_height="match_parent"> - \ No newline at end of file + \ No newline at end of file