The RecyclerView is fully scrolled down yet the scrollbar does not touch the bottom of the view.
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/ordersList"
android:layout_width="match_parent"
android:layout_height="150dp"
android:scrollbars="vertical"/>
My XML and ViewHolder codes are very simple, there are no any complicated logic to confuse it this way. This issues is exists in all Recyclerview lists on my app. I now there were such a bug on android support library earlier, but now I use androidx.
Looking for any idea why can this happen.