Tag: Coding
-

How to Convert Kotlin to Java Code
Kotlin is one of the most popular language for Android development because of its concise syntax and modern features. But there might be cases…
-

Improve Layout Inflation in Grid Android
Android developers often strive to improve the efficiency of their applications, and a significant part of this process revolves around the optimization of layouts.…
-

Android Snackbar Example Tutorial
The Android Snackbar is a unique, lightweight feature that provides feedback about an operation. Like a toast message, it presents a brief notification to…
-

Fixing The ‘Android Resource Linking Failed’ Error
The ‘Android resource linking failed‘ error is a common problem among Android developers. This error can be quite frustrating, especially when it appears in…
-

How to add back button in the Title Bar
In this tutorial, you will learn how to add a back button in the title bar in Android Studio. Adding an arrow help in…
-

How to Add R8 in Android Studio
Android R8 is available in Android Studio 3.4. shrinking helps to decrease the size of your APK by removing unused code as well as…
-

RatingBar in Android Studio
In Android, RatingBar is an extension of SeekBar and ProgressBar which shows the rating in stars. RatingBar is a subclass of AbsSeekBar class. The…
-

Android SQLite Database Tutorial (ADD, DELETE, FETCH)
SQLite is an open-source and relational database management system. Compared to SQL servers and Oracle, it is very light in weight. It is serverless,…
-

Social Media Buttons in Flutter Web
Social media buttons on websites are not a new thing. We all are familiar with them somehow. We can find it on every website…
-

How To Use Retrofit Tutorial in Kotlin
What is Retrofit? Retrofit is a REST Client for Android and Java/Kotlin by Square. It makes it relatively easy to retrieve and upload JSON…
-

Navigation Drawer in Kotlin Android
So What is Kotlin ? Kotlin is a cross-platform, statically typed, general-purpose programming language with type inference. Kotlin is designed to interoperate fully with…
-

Image Slider in Flutter with Example
Ever wondered what we call those image sliders on the Apps and websites like Amazon, Flipkart, etc. Those elegant looking image Sliders are known…
-

Automatically Reading SMS To Verify OTP
In the digital age, security and convenience often go hand-in-hand, particularly in the realm of online transactions. One of the most significant advancements in…
-

How To Make an Android Widget (Home Screen)
A widget is a small application that is displayed only on the Home Screens or Lock Screens, it provides a quick way to access…
-

Getting Current Location in Android using Kotlin
So in this tutorial, we’ll be learning about getting the user’s current location in Android using kotlin (latitude & longitude). We will be using…
-

Room Database in Kotlin
What is Room? Room is part of the Android Architecture Components presented in the Google I/O 2016. It is not an ORM, it is…
-

SlideUp Motion Layout in Android Studio
MotionLayout is the new layout in Android, for creating amazing interactive animations in android. It’s a part of ConstraintLayout 2.0 library. To have MotionLayout up and…
-

How To Create the Currency Converter App in Android in 4 Simple Steps
This tutorial will take you through a step-by-step process on how to create a simple currency converter app in Android studio. We shall put…
-

How To Send Email in Android Using Intent : 10 minute guide
Welcome to our another Android application development tutorial.In this tutorial we would learn how to send email in android using intent We can easily…
-

Swipe to Delete RecyclerView items with UNDO in Android Studio
Here we will create an example to delete an item of RecyclerView by swiping the item with undo functionality. For this purpose, we will…
-

How to Implement Text To Speech in Android Studio
Text-to-speech (TTS) technology reads clearly digital manual – the words on computers, smartphones, and tablets. This tutorial explains how to implement text to speech in android…
-

How to Implement Google SafetyNet ReCAPTCHA in Android Studio
The SafetyNet service includes a reCAPTCHA API that you can use to protect your app from malicious traffic. In this tutorial we would see…