i have a RecyclerView
with top padding and android:clipToPadding="false"
when findFirstCompletelyVisibleItemPosition()
is called on the RecyclerView
's LinearLayoutManager
, it returns the index of the first item that would be completely visible if android:clipToPadding
were set to true
.
Any idea how to get the first actually completely visible item index if android:clipToPadding
is set to false
?