Using Androids Recyclerview with Kotlin
Traditionally, you were using a listview to display several homogeneous elements in you Android app. However, this view is now deprecated. Android now offers an alternative, which aims to increase performance by only loading those elements, that are currently rendered on-screen: the RecyclerView. This article shows you how to get started with the RecyclerView. To make things a bit more interesting, we will be using Kotlin instead of Java. You can set up an Android project for Kotlin by simply clicking the checkbox for Kotlin support in the new project wizard. ...