🚀 Launching Activities in Easier Way Using Kotlin Extensions 💻
Kotlin Extensions for simpler, easier and fun way of launching Activities in Android
Reposted on my Medium profile.
Few days ago, I was reading this awesome article by Elye about a Kotlin keyword reified
. Soon after reading the article, I started exploring it and I realized that we can simply lots of reusable tasks of Android development using reified and Kotlin extension methods. For example, launching Activities.
🔲 Launching Activities — Traditional Way
Launching activities in android apps is a common task and different developers use different approaches. Some use the traditional ways of creating Intent bundles and passing them in startActivity() methods along side the Intents.
Let’s look at the typical traditional way of starting another activity
Now, if we pass some arguments in it, this becomes more complex.
💥 Launching Activities —The Simpler, Easier, and Fun Way
But, creating some Kotlin extension methods with using reifiedkeyword, we can make these a lot simpler and enjoyable.
Now, after this, we can do same launching activity stuff (of previous examples) like this:
Or we can pass arguments like this:
Here are all the cases which you can do with these extensions: