Android setOnScrollListner on RecyclerView deprecated

后端 未结 1 390
误落风尘
误落风尘 2021-02-03 16:58

setOnScrollListener is deprecated. Reading the docs from here it tells to Use addOnScrollListener(OnScrollListener) and removeOnScrollListener(On

相关标签:
1条回答
  • 2021-02-03 17:14

    addOnScrollListener(OnScrollListener) means you can add more than one listener to a RecyclerView.

    removeOnScrollListener(OnScrollListener) means you can remove one of the listeners that attached to a specific RecyclerView. If the arg was set null, it equals to clearOnScrollListeners() method.

    And, clearOnScrollListeners() let you remove all the listener from a RecyclerView.

    0 讨论(0)
提交回复
热议问题