From 27f117df5f59e31fa0938456241a4daf60d47f95 Mon Sep 17 00:00:00 2001 From: Agnieszka C <85929121+Aga-C@users.noreply.github.com> Date: Fri, 18 Feb 2022 11:02:07 +0100 Subject: [PATCH 1/2] Added padding for checklist to avoid hiding the last item (#443) --- app/src/main/res/layout/fragment_checklist.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/main/res/layout/fragment_checklist.xml b/app/src/main/res/layout/fragment_checklist.xml index fe6ff7cf..7304db2b 100644 --- a/app/src/main/res/layout/fragment_checklist.xml +++ b/app/src/main/res/layout/fragment_checklist.xml @@ -60,6 +60,7 @@ android:clipToPadding="false" android:overScrollMode="never" android:visibility="gone" + android:paddingBottom="@dimen/secondary_fab_bottom_margin" app:layoutManager="com.simplemobiletools.commons.views.MyLinearLayoutManager" /> Date: Tue, 8 Mar 2022 12:01:38 +0100 Subject: [PATCH 2/2] flipping the order --- app/src/main/res/layout/fragment_checklist.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/res/layout/fragment_checklist.xml b/app/src/main/res/layout/fragment_checklist.xml index 7304db2b..dcc19ffd 100644 --- a/app/src/main/res/layout/fragment_checklist.xml +++ b/app/src/main/res/layout/fragment_checklist.xml @@ -59,8 +59,8 @@ android:layout_height="match_parent" android:clipToPadding="false" android:overScrollMode="never" - android:visibility="gone" android:paddingBottom="@dimen/secondary_fab_bottom_margin" + android:visibility="gone" app:layoutManager="com.simplemobiletools.commons.views.MyLinearLayoutManager" />