Recently, I have written a post about RecyclerView: Android RecyclerView: How to Insert, Update and Delete Item. It is rather long and includes the basics
Category: Android

Well, this is yet another Android Development guide written just for you. If you are starting out with Android development. Or, even if you are

We used to use findViewById() to map our views to the Java/Kotlin code. But there is something better than simply doing findViewById(). And this concept

Let us look at how we can create use the Android Notification Manager class to create a simple Notification in Android. In this tutorial I

Android has introduced Architecture Component that has Room Library for managing SQLite database. Here I will provide a step by step guide to implement the

In this blog post we are going to look at how we can pick file in Android without messing with Content URI. If you are

Splash Screen is the first thing you see when you open an application. It makes your application feel pretty professional if you do it right.

RecyclerView is possibly most used View in Android development for showing list of items. There was something called ListView the use of which is now

Learning Kotlin is not as hard as you have thought. But the concepts in coroutine might be a little tough in the beginning. There is

I have written an article stating the reasons why LocalBroadcastManager is deprecated, read here. And I have suggested multiple solutions among which EventBus is one.