Closed jlmd closed 8 years ago
I would skip this step and directly go to RecyclerView.
What do you think?
Yes, I think the new RecyclerView is a good practice.
RecyclerView requires a ViewHolder, and you don't need to care about if the view is being recycled. It's really a good alternative.
RecyclerView doesn't replace everything though: implementing the equivalent of ExpandableListView with RecyclerView is pretty tough.
Its worth noting that for simple lists, ListView is not a bad thing to use. RecyclerView shines when you need customization or complex interactions and or animations.
It's been a while, so closing this due to inactivity! If you'd still like to see an Adapter practices section, create a PR and we'll take a look
Hey, What do you think about add Android Adapter good practices, such as use BaseAdapter instead of ArrayAdapter or use the ViewHolder pattern?
Check this article: http://www.piwai.info/android-adapter-good-practices/
Thanks for the recopilation!