From 1d984b6de3ffe93c27ae83551fd325da455f0444 Mon Sep 17 00:00:00 2001 From: PixelyIon Date: Fri, 11 Mar 2022 15:53:02 +0530 Subject: [PATCH] Add padding to end of `app_list` A small amount of padding at the end of `app_list` to signify that the end of the list has been reached was added. --- app/src/main/res/layout/main_activity.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/src/main/res/layout/main_activity.xml b/app/src/main/res/layout/main_activity.xml index 65455a12..6f593c52 100644 --- a/app/src/main/res/layout/main_activity.xml +++ b/app/src/main/res/layout/main_activity.xml @@ -130,6 +130,7 @@ android:layout_width="match_parent" android:layout_height="match_parent" android:clipToPadding="false" - android:overScrollMode="never" /> + android:overScrollMode="ifContentScrolls" + android:paddingBottom="20dp"/>