Dec 12 2018
, Kotlin 1.3, Android 4.4, Android Studio 3Kotlin 1.3, Android 4.4, Android Studio 3
In this Android tutorial, see how to use Kotlin sealed classes to create limited hierarchies that act like enums but allow you to create multiple instances.
By Joe Howard.
Replace the code in convert.setOnClickListener, and create two AcceptedCurrency instances using the new function
convert.setOnClickListener {
val low = currencyFromSelection()
val high = currencyFromSelection()
}
These two values are instances of the same AcceptedCurrency subtype, the one that’s selected in the spinner. You see here that unlike enum cases, you can create multiple instances of a sealed class subtype.
Finish off the convert button click listener by converting the amounts in the fields to amounts on the AcceptedCurrency instances, and then show those amounts in dollars in the text views using the totalValueInDollars() function of the parent sealed class:
Enter low and high values and choose a non-dollar currency. Then click convert and you’ll see the equivalent dollar amounts.
Congratulations! You’re now the possessor of some supreme knowledge on Kotlin sealed classes!
Where to Go From Here?
You can use the Download Materials button at the top or bottom of the tutorial to access the final version of the currency converter app.
You’ve seen how sealed classes let you build restricted hierarchies for a finite set of states, in this case a set of currencies.
Another common use for sealed classes is tracking the loading state of a screen, e.g. loading, empty, or done.
Sealed classes come in very handy in architecture patterns like Model-View-Intent, in which a stream of user intents (be careful—not the Android Intent class) get translated to different types of representations as they are processed by the app. Sealed classes are a match for handling those different representations.
If you have any questions or comments, please join the discussion below!
All videos. All books.
One low price.
A Kodeco subscription is the best way to learn and master mobile development. Learn iOS, Swift, Android, Kotlin, Flutter and Dart development and unlock our massive catalog of 50+ books and 4,000+ videos.