
BaseActivity and BaseFragment are monsters
An old tale of composition over inheritance, sort of!
One of the good practices when writing code is “Reusability”. Instead of writing the same code multiple times, we should write it once and use it wherever we need to. Simple as that!
Well not so fast! How can we achieve it though? The first thing that comes to mind is to find the similarities/duplications and put them in a base class. This way whoever that is extending our base class can have the functionalities out of the box without needing to write them over again! But there is a problem with this approach,. Our base class tends to get messy, creepy and hard to touch after sometime, specially in the languages that don’t allow extending from two or more classes.
A day to day normal example would be that of a BaseActivity. We tend to put a lot of logic in that class, things like layout inflation, analytics, activity/permission results, et cetera. We start off with something like:
Pretty clean, right? Well maybe now but not in a month. Specially when you introduced a ton of callbacks, implemented a lot of interfaces and added a big deal of logic! Your base activity is going to look eventually like:
You see what I mean? Have fun extending this class, let alone refactoring or bug fixing it! No need to mention migrating to new technologies is going to be extra troublesome if your base activity is dependent on old tech.
OK, so how can we go about fixing it?
Layout inflation
If you are only worried about layout inflation for your activities and don’t want to repeat setContentView()
all the time, then simply use AppCompatActivity(@LayoutRes contentLayoutId: Int)
constructor from androidx.activity:activity-ktx:1.1.0
and for fragments Fragment(@LayoutRes contentLayoutId: Int)
constructor fromandroidx.fragment:fragment-ktx:1.2.0
.
Setting up toolbar
To setup toolbar just use extension functions on activities and/or fragments.
This way only the activities who actively want to setup a toolbar would use it! And if some activities have a particular way of setting up their toolbar, then they can use another method or just write it their own way!
Activity/Permission results
This shouldn’t be something that make people use base classes but if you are using a base class to handle these stuff, maybe take a look at ActivityResultContract
in androidx.activity:activity:1.2.0-alpha04
Analytics
To send tracks and do analytics stuff based on activity/fragment callbacks you can just use ActivityLifecycleCallbacks
in your Application
class for activities and for fragments you can use FragmentLifecycleCallbacks
When to use Inheritance then?
As discussed, when it comes to addressing duplications and code reusability, it seems that Inheritance isn’t the right approach. Instead we should try to use functions or compose smaller classes!
But if we are trying to bring about a new framework by creating a new concept of an activity and adding some new functionality and properties that are local and native to the new concept, then Inheritance is the right approach. And I wouldn’t suggest BaseActivity
as its name! Maybe something like MyFrameworkActivity
.
We should also acknowledge that there isn’t a fine line that determines when to use what approach!
TL;DR
To make your code reusable don’t try putting everything in a giant base activity or fragment (inheritance), instead introduce composition with the help of extension functions or dividing logic into different classes. Because:
- It makes it easy to migrate to new tech/architecture.
- It makes it easy to start writing new activities and fragments, that are well know by all developers, instead of making them understand your version of activities and fragments!
- Plus all the benefits composition brings over inheritance!
TBH, I couldn’t find a use case or a good reason for using base activities or base fragments. Let me know if you know of a good one!