HaloMediaz
HaloMediaz

Reputation: 1263

What do I need to update, to get the latest recyclerview methods?

According to the docs, the latest recyclerview has addOnScrollListener, yet in android studio this method doesn't show up, but instead shows the deprechiated setOnScrollListenermethod, but with no sign of it being depreciated.

Any help on what I need to update would be much appreciated.

Upvotes: 1

Views: 42

Answers (1)

Phiat
Phiat

Reputation: 506

Make sure you're using support.v7 RecyclerView

import android.support.v7.widget.RecyclerView;

And in build.grade

compile 'com.android.support:recyclerview-v7:22.2.0'

Upvotes: 3

Related Questions