Today we are going to discuss how to show an alert dialog with an input field (EditText) in Android Kotlin. In this article, you will learn a lot about an AlertDialog. Description Actually Android doesn’t have the built-in dialog to do this. Fortunately, this is just a little extra work on top of creating a […]
Capitalize First Letter of String in Android – Kotlin & Java
If we have a String in Kotlin or in Java in Android and we need to capitalize the first letter of the string, we don’t have any built-in method for the purpose. You can use the following methods to capitalize the first letter of String in Android in both Java & Kotlin. Capitalize First Letter […]