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: Programming
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
When working with NodeJS, sometimes there will be version specific issues. Even if there are none you might want to experiment with certain node versions.
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
ArrayList is undoubtedly of the most essential data structure in Java. You might be just starting out with the ArrayList in Java after learning about