Easily loop through items.
Need to loop through an array, list, or collection? Kotlin has a nice, convenient for
loop. See here:
for (i in 1..100) {
d("daniel", "is is $i")
}
The variable i
will be updated every iteration, starting at 1
and running to 100
.
Alert tutorial.
Material Design.
Stroke it.
Create beautiful buttons in XML.
Built with Android Studio and Kotlin.
Getting started is sometimes the hardest part.
Add a click listener in Kotlin.
Let users sign in.
It always begins with registration.