Today, we will design a Forgot Password Activity in Android Studio in both Kotlin & Java Android Programming languages. In this article, we are going to use Google Material Design guidelines to design the UI. We will also perform the validation of the inputs. You can use this code as a utility while designing Login Screens in […]
Check if the Internet is Connected in Kotlin
Today we will discuss how to check Internet Connection availability from your Android applications. This is a step-by-step Tutorial in the Kotlin language. Let’s learn How To Check the Internet is Connected in Kotlin. Determine the Status of Internet Connection In android, we can determine the internet connection status easily by using the method of ConnectivityManager object. Following is the […]
Utility Class to Show Loading Dialog in Kotlin
Today we are going to discuss how to Show Loading Dialog in Kotlin anywhere in the application with a simple utility class. You can add this Utility Class to Show Loading Dialog in the Kotlin project. You can simply copy and paste the code into your class and use it right out of the box. […]
Method to Get last n Characters of String in Kotlin
In this article, you will find a very simple method that will help you to get the last n (1, 2, 3, 4, …) characters from a String in Kotlin. This method is simple, it will just take String and Integer count as a parameter and returns another string containing the last specified number of characters. In […]
Show Alert Dialog With an Input Field (EditText) in Android Kotlin
Today we are going to discuss how to show an alert dialog with an input field (EditText) in Android Kotlin. In this article, you will learn a lot about an AlertDialog. Description Actually Android doesn’t have the built-in dialog to do this. Fortunately, this is just a little extra work on top of creating a […]
Find Distance Between Two Locations in Kotlin
Most of the applications use Google Maps due to indicate places on Google Maps. We can use it to find the distance between two locations having coordinates latitude and longitude for those locations. But that gives by road distance. But in some scenarios, we only have to find a straight line distance between 2 latitudes […]
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 […]
Method to Get Last n Characters of a String in JAVA
In this post, I am going to share a simple method that will help you to get last n (1, 2, 3 4, …) characters from a String in Java. This method is very simple as it just takes String and integer count as a parameter and returns another string containing the last specified number […]
Unable to resolve module lib-jitsi-meet/lib-jitsi-meet.min
I have recently faced this issue while customizing JitsiMeet SDK and integrating with my existing App. Here I am going to share the solution of the error, how I solved it in my case. The App runs successfully but React Native shows the following error on the Device or Simulator screen. “Unable to resolve module […]