Year: 2018

  1. Home
  2. chevron_right
  3. 2018

Kotlin ListView with ViewHolder

Kotlin
In this post we will create a ListView with ViewHolder adapter but we will write the code in Kotlin. For creating xml files for ListView and list items, follow the…

Kotlin Common Questions

Kotlin
1. Where should we keep constants in Kotlin? if you need constants to be accessed globally use const as top-level properties (not inside a class). In order to do this create…

Kotlin – for, while, if, when

Kotlin
Control flow: for, while, if, when This post is for beginners who want to start learning Kotlin language and already know Java. We will show simple examples of for, while, if,…