CarlitosDroid / Sectioned-RecyclerView-Sample

RecyclerView is a special view in android,In this sample I want to show the most powerful of the RecyclerView in Android.
3 stars 0 forks source link

Multiple View Types #1

Open lawrence615 opened 8 years ago

lawrence615 commented 8 years ago

Hi,

Is it possible to have multiple view types or rather different layout for items under each section?

Thanks

CarlitosDroid commented 8 years ago

Exactly you can define multiple view types. In the "getTypeOfView" method you return an integer value for a type of view in each posititon and in the onCrateViewHolder you can create an instance of your Viewholder related with this type of view. If you have a diferent and new item layout you should have a new Viewholder Class. I hope to help you.