π Launching Activities in Easier Way Using Kotlin Extensions π»
By Wajahat Karim β’ 04.Mar.2019
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:

Codes available in following Gists:
{{< gist wajahatkarim3 d3a728dbb20002dc54ac44bad40e4077 >}}