hudomju / android-swipe-to-dismiss-undo

Android swipe-to-dismiss-undo library and sample code
MIT License
240 stars 82 forks source link

Drop deprecated APIs from documentation #15

Open marioguerriero opened 9 years ago

marioguerriero commented 9 years ago

In the RecyclerView documentation you shoul change the line

recyclerView.setOnScrollListener((RecyclerView.OnScrollListener)touchListener.makeScrollListener());

to

recyclerView.addOnScrollListener((RecyclerView.OnScrollListener)touchListener.makeScrollListener());

so that you won't use deprecated APIs.