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 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 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, […]
Pull to Refresh Functionality in Kotlin Android
Today we are going to discuss how to implement Pull to Refresh Functionality in Kotlin. Finally, Google released an official version of the Pull To Refresh library. It is called SwipeRefreshLayout, inside the support library, and we can use it for RecyclerView, ListView, or other types of views. In this tutorial I am going to explain […]
How to implement Pull To Refresh for RecyclerView in Android – Java
Android provides SwipeRefreshLayout to implement pull to refresh functionality in Android. We can use it for RecyclerView, ListView, or other types of views. In this tutorial, I will explain how you can implement Pull To Refresh for RecyclerView using SwipeRefreshLayout in Android. The following is the Java code for pull to refresh functionality. If you […]