I'm looking for a workaround for using RadListView
's scrollPosition
property in Android, as it is available only in iOS.
Trying to look for some properties in android's RecyclerView
widget docs
Any insights?
Asked
Active
Viewed 43 times
0

bks
- 1,886
- 1
- 24
- 43
1 Answers
1
Check this answer: https://stackoverflow.com/a/38248034
Since RadListView code is closed source, you'd probably have to inspect it to check what classes it's using underneath. As it extends RecyclerView, you could try radlistview.android.getLayoutManager()
, find out which class it is and call the equivalent method to get the view id (each LayoutManager has it's own findFirst...()
method).

Eduardo Speroni
- 341
- 2
- 8