1
0
Fork 0
mirror of https://github.com/KokaKiwi/BarInsta synced 2026-03-04 19:41:36 +00:00

Due to MotionLayout, the bottom nav bar won't hide on scroll. Instead give recyclerview bottom padding to avoid last row/item being partly hidden.

This commit is contained in:
Ammar Githam 2021-05-08 16:42:57 +09:00
parent b64d1409a0
commit fb1f3c2cd8
6 changed files with 28 additions and 7 deletions

View file

@ -24,6 +24,7 @@
android:layout_width="match_parent"
android:layout_height="0dp"
android:clipToPadding="false"
android:paddingBottom="?attr/actionBarSize"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@id/header">
@ -33,7 +34,6 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:paddingBottom="?attr/actionBarSize"
tools:listitem="@layout/item_feed_grid" />
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
</androidx.constraintlayout.motion.widget.MotionLayout>