Recyclerview scrollToPosition doesn't work with NestedScrollView ? Is there anyway?

Viewed 3257

So I have a Recyclerview within a NestedScrollView. When I say recycleview.scrollToPosition(X) or recycleview.getLayoutManager().scrollToPosition(X) it doesn't work at all.

If I move the recycleview out from the nestedScrollView it works fine, but I can't do it, because of the layout structure! Any idea?

scrollingView.requestChildFocus(recyclerView,recyclerView);

tried this, but not focusing on a certain position

1 Answers
Related