In Android, a fragment is a modular section of a user interface that can be combined with other fragments to create a flexible and responsive… Read More
Tag Archives: Kotlin Android
Are you using old lengthy java fashioned way of creating & handling callbacks in Android with Interfaces? If yes then it’s a very good time… Read More
In science, a scientific expression defining a context is a combination of a finite number of symbols according to the rules of the context. So… Read More
In Android, a ListView is a view used to display a list of items separated by a stroke. A ListView adapter is used to supply… Read More
Animations in Android allow UI elements to perform aesthetic moves across the screen. Animations can be implemented from a third party as well as developed… Read More
Sometimes we want to display to the users that they have clicked an item by showing a border on the item. So, for this, we… Read More
An anagram of a word is another word that contains the same characters, only the order of characters can be different. For example, “abcd” and… Read More
If you’ve been developing Android Apps for some time, you’re probably already tired of working with findViewById in your day-to-day life to recover views. Or… Read More
Kotlin Flow is one of the latest addition to the Kotlin Coroutines. With Kotlin Flow we can handle streams of data asynchronously which is being… Read More
What is onBackPressed() in Android? This is an override function called when the user presses the back button on an Android device. It has great… Read More
If the Android application is developing, which is internet-based, then there must be a feature that checks for internet connectivity and informs the user there… Read More
If there are two or more fragments in an activity, they need to communicate and share the data between them. The traditional way of sharing… Read More
Android TimePicker is a user interface control for selecting the time in either 24-hour format or AM/PM mode. It is used to ensure that users… Read More
In this article, you will know how to implement RecyclerView in Android using Kotlin. Before moving further let us know about RecyclerView. A RecyclerView is… Read More
Sometimes the Android device undergoes configuration changes, during application runtime. While the device undergoing configuration changes all the activities and fragments are recreated. This restarting… Read More