Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I recently update my Android Studio and also SDK. In new Android Studio, there is android.support.v7.app.AlertController.RecycleListView. I am familiar with android.support.v7.RecyclerView, so I am a little bit confused that what is the difference between these two. If anyone can guide then it would be thankful.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
738 views
Welcome To Ask or Share your Answers For Others

1 Answer

RecycleListView is an internal class not intended for external use. The fact that it is showing up publicly in the support library is probably a mistake.

You can see here in the regular (non-appcompat) version it is an internal class http://developer.oesf.biz/em/developer/reference/eggplant/com/android/internal/app/AlertController.RecycleListView.html

edit: The old link is no longer available. Here is the archive.org version: https://web.archive.org/web/20170604100431/http://developer.oesf.biz/em/developer/reference/eggplant/com/android/internal/app/AlertController.RecycleListView.html


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...