get scroll Y of RecyclerView or Webview

后端 未结 2 1139
独厮守ぢ
独厮守ぢ 2020-12-31 10:42

I have created a activity Webview content placed in Recyclerview. I want to get the scroll Y position when I scroll webview. I tried Webview.

2条回答
  •  长发绾君心
    2020-12-31 11:16

    computeVerticalScrollOffset()is more convenient at this situation as @Pkmmte mentioned.

    mTotalScrolled  = recyclerView.computeVerticalScrollOffset();
    

提交回复
热议问题