In this article, we will learn how to Load Multiple Images from URL in Android Studio using Glide in Kotlin. We can import images in the form of URLs and display them in the RecyclerView. At the end of this tutorial, you will see the following screen will be designed. Dependencies After creating a new project, […]
How to Load Images From URL using Glide in Android Java
In this article, we will learn how to Load Images from URL in Android Studio using Glide in Java. At the end of this tutorial, you will see the following screen will be designed. Dependencies Add the following dependencies in your build.gradle. Make sure you Sync your project after adding the Glide. Internet Permission We are […]
How to Load Images From URL Using Picasso in Android Java
In this article, we will learn how to Load Images from URL in Android Studio using Picasso in Java. At the end of this tutorial, you will see the following screen will be designed. Dependencies Add the following dependencies in your build.gradle. Sync your project after adding the Picasso. Add Internet Permission To load images from […]
How to Load Images From URL Using Fresco in Android Java
In this article, we will learn how to Load Images from URL using Fresco in Java. At the end of this tutorial, you will see the following screen will be designed. Dependencies After creating a new project, Add the following dependencies in your build.gradle. Make sure you Sync your project after adding the Fresco. Add Internet […]
How to Load Images From URL Using Fresco in Android Kotlin
In this article, we will learn how to Load Images from URL in Android Studio using Fresco in Kotlin. At the end of this tutorial, you will see the following screen will be designed. Dependencies Add the following dependencies in your build.gradle. Make sure you Sync your project after adding the Fresco. Add Internet Permission To […]
Pass Object from One Activity to Another using Serializable in Kotlin
The Serializability class allows usable serial integration of the class using the java.io.Serializable interface. To pass an object from one activity to another activity we can use Java serializable in Android. All subtypes of a serializable class are serializable themselves. The interface has no fields and methods that can only serve to identify the semantics […]
Realm Database Migration in Android Using Kotlin
In this article, we will learn Realm Database Migration in Android using Kotlin. You must have faced the migration issue while submitting new versions. If we don’t migrate the Realm database properly, it causes crashes when users update the App. Realm Database Migration Steps Add the following migration code in your Application class after Realm.init(this); method call. […]
How to Retrieve Data From Realm Database in Kotlin
In this article, we will learn about how to Retrieve data from Realm Database in an Android Application. The Realm Mobile Database is an alternative to SQLite and core data and can be used as a cross-platform. The Realm Database is easy to establish and fast performance. Using Realm we can save class objects directly […]
How to Save Object into Realm Database in Kotlin
In this article, we will learn about how to save object into Realm Database in an Android Application. The Realm Mobile Database is an alternative to SQLite and core data and can be used as a cross-platform. It offers advanced features such as encryption, data information, and JSON support. The Realm Database is easy to […]
How to Load Multiple Images From URL in Android Using Picasso Kotlin
In this article, we will learn how to Load Multiple Images from URLs in Android Studio using Picasso Kotlin. We can import images in the form of URLs and display them in the RecyclerView. At the end of this tutorial, you will see the following screen will be designed. Dependencies After creating a new project, […]