kotlin

Create Dynamic Lists In Android With RecyclerView

Create dynamic lists in Android with RecyclerView

Learn how to create a dynamic RecyclerView.Adapter that displays a list with a different ViewHolder in Android apps.
Jobin Lawrance
6 min read
Android Logo Over a Background of Picture Frames

Implementing Picture-in-Picture mode on Android

Learn how to successfully implement picture-in-picture mode within an Android application, including how to add PiP to an Android activity.
Shivam Dhuria
4 min read
Kotlin coroutine unit testing the better way

Kotlin coroutine unit testing the better way

Sometimes, tests fail. Learn how to solve a common problem with unit testing Kotlin coroutines in this quick, explanatory walkthrough.
Lukasz Kalnik
5 min read

Intro to SQLDelight

Learn how to use the SQLDelight library, which provides Kotlin and Java APIs to reason about CRUD operations with compile-time validations.
Jobin Lawrance
4 min read
An Android Robot Inside a Blue Glowing Cube

Building faster Android apps with Jetpack Compose

This article will jumpstart your learning of Jetpack Compose by demonstrating the building blocks of a Compose UI application and more.
Nate Ebel
7 min read
Kotlin Enum Classes Complete Guide

A complete guide to enum classes in Kotlin

Explore Kotlin enum classes through examples covering both basic and advanced features. Learn how to use anonymous classes, add custom properties,...
Antonello Zanini
7 min read
A Complete Guide To Kotlin Lambda Expressions

A complete guide to Kotlin lambda expressions

Make your Kotlin code more expressive and understandable by applying tips from this guide on Kotlin lambdas to your development.
Nate Ebel
13 min read
Using Kotlin data classes to eliminate Java POJO boilerplates

Using Kotlin data classes to eliminate Java POJO boilerplates

Kotlin offers many benefits over "plain" Java. This guide demonstrates how to replace dated POJO boilerplates using Kotlin's more elegant data...
Ben Holmes
5 min read
Understanding Kotlin coroutines

Understanding Kotlin coroutines

Dive deeper into Kotlin coroutines — suspendable computations similar to threads that simplify asynchronous programming in Kotlin.
Diogo Souza
5 min read