Problem Given a string s consisting of some words separated by some number of spaces, return the length of the last word in the string. […]
Read moreTag: Kotlin
Simple SharedPreference Functions – Kotlin
Android provides many ways of storing data of an application. One of these ways is called Shared Preferences. Shared Preferences allow you to save and […]
Read moreRoom Database with Kotlin
Room is a persistence library, part of the Android Jetpack. The Room is now considered as a better approach for data storing than SQLiteDatabase. The […]
Read moreEdittext Text ChangeListener Kotlin
Action whenever the text is changed in the EditText View. Application to implement a listener TextWatcher object, for EditText to trigger an action on text […]
Read moreNotifications in Kotlin Oreo (8+)
Create a new Project in Kotlin Message can display outside of our application normal UI 1 Open Android Studio. 2 Go to File => New […]
Read moreAndroid spinner Using Kotlin With Example
Spinners provide a way to select one value from a list set. In the default state, a spinner shows its currently selected value. Create a […]
Read moreBottom Navigation View Android
BottomNavigationView creates bottom navigation bars, making it easy to explore and switch between top-level content views with a single tap. Bottom Navigation Bar always stays at the bottom of your application […]
Read moreAndroid Splash Screen with Kotlin
Android Splash Screen is the 1st screen visible to user when app launches. Splash screen displays some animations or App logo for a short time […]
Read moreGoogle Map API with Kotlin
Here we are going to learn how to add a google map to our project using google maps API with Kotlin. Here we are developing […]
Read moreShared Preferences With Kotlin
In this tutorial, we are going to learn how to use SharedPreferences In our Android Application to Store data in the form of value-key pairs […]
Read more