Skip to content

HadiHabibza/Open-Close-RecyclerView

 
 

Repository files navigation

Open-Close-RecyclerView

This repository contains a recyclerview with respect to open close principle.

Implementing adapters is one of the most frequent tasks for an Android developer. It’s the base for every list. Looking at apps, lists are the base of most apps. when you need to have different kind of items in your views, you maybe violate OCP.

Scott Meyers in "Effective C++" says: Anytime you find yourself writing code of the form “if the object is of type T1, then do something, but if it’s of type T2, then do something else,” slap yourself.

If you look at those adapters implementation that have switch case with instace cheking in onCreate and onBind Viewholder, there is a lot of slapping to be done.

you can find 3 approach that implemented recyclerView on three different branches by :

ehsan : https://github.com/abbasiehsan1991

hadi : https://github.com/hadi72h

hossein : https://github.com/cormen3

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Kotlin 100.0%