Month: August 2018

  1. Home
  2. chevron_right
  3. 2018
  4. chevron_right
  5. August

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…