Kayıtlar

kotlin etiketine sahip yayınlar gösteriliyor

Take first or last characters (Substring) with Kotlin

Sometimes you might want to get the last characters of the string or first characters. This is very easy with kotlin.

Add custom or absent view groups to Anko DSL

If you want to use TextInputEditText or LottieAnimationView etc. in Anko DSL You add two lines and then use it

How to count the lines of Android App?(Kotlin & Java)

 If you want to know how much code you have written Kotlin, Java and xml, You need to use git first. If you use it so this code enter in Android studio terminal and you learn it. wc -l $(git ls-files | grep '.*\.xml')+$(git ls-files | grep '.*\.java')+$(git ls-files | grep '.*\.kt')

How to close Android Soft KeyBoard programmatically?(Kotlin & Java)

How to hide soft keyboard on android with code? Note: Emulator does not appear, try live on the phone.