我需要更新什么才能获得最新的 recyclerview 方法?
What do I need to update, to get the latest recyclerview methods?
根据文档,最新的 recyclerview 有 addOnScrollListener, yet in android studio this method doesn't show up, but instead shows the deprechiated setOnScrollListener 方法,但没有被贬值的迹象。
如能就我需要更新的内容提供任何帮助,我们将不胜感激。
确保您使用的是 support.v7 RecyclerView
import android.support.v7.widget.RecyclerView;
并且在build.grade
compile 'com.android.support:recyclerview-v7:22.2.0'
根据文档,最新的 recyclerview 有 addOnScrollListener, yet in android studio this method doesn't show up, but instead shows the deprechiated setOnScrollListener 方法,但没有被贬值的迹象。
如能就我需要更新的内容提供任何帮助,我们将不胜感激。
确保您使用的是 support.v7 RecyclerView
import android.support.v7.widget.RecyclerView;
并且在build.grade
compile 'com.android.support:recyclerview-v7:22.2.0'