Fix scroll to message when bubble is under toolbar.

This commit is contained in:
Cody Henthorne
2024-04-05 13:10:58 -04:00
committed by Greyson Parrelli
parent 3ea194255d
commit ba3473c61a
2 changed files with 7 additions and 2 deletions

View File

@@ -191,10 +191,10 @@ class ScrollToPositionDelegate private constructor(
if (abs(layoutManager.findFirstVisibleItemPosition() - position) < SCROLL_ANIMATION_THRESHOLD) {
val child: View? = layoutManager.findViewByPosition(position)
if (child == null || !layoutManager.isViewPartiallyVisible(child, true, false)) {
layoutManager.scrollToPositionWithOffset(position, recyclerView.height / 4)
layoutManager.scrollToPositionWithOffset(position, recyclerView.height / 3)
}
} else {
layoutManager.scrollToPositionWithOffset(position, recyclerView.height / 4)
layoutManager.scrollToPositionWithOffset(position, recyclerView.height / 3)
}
}
}