Tag: Coding
-

How to Convert Kotlin to Java Code
Read more: How to Convert Kotlin to Java CodeKotlin 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
Read more: Improve Layout Inflation in Grid AndroidAndroid 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
Read more: Android Snackbar Example TutorialThe 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
Read more: Fixing The ‘Android Resource Linking Failed’ ErrorThe ‘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
Read more: How to add back button in the Title BarIn 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
Read more: How to Add R8 in Android StudioAndroid 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
Read more: RatingBar in Android StudioIn 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)
Read more: 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
Read more: Social Media Buttons in Flutter WebSocial 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
Read more: How To Use Retrofit Tutorial in KotlinWhat 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
Read more: Navigation Drawer in Kotlin AndroidSo 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
Read more: Image Slider in Flutter with ExampleEver 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
Read more: Automatically Reading SMS To Verify OTPIn 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)
Read more: 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
Read more: Getting Current Location in Android using KotlinSo 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
Read more: Room Database in KotlinWhat 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
Read more: SlideUp Motion Layout in Android StudioMotionLayout 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
Read more: How To Create the Currency Converter App in Android in 4 Simple StepsThis 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
Read more: How To Send Email in Android Using Intent : 10 minute guideWelcome 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
Read more: Swipe to Delete RecyclerView items with UNDO in Android StudioHere 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
Read more: How to Implement Text To Speech in Android StudioText-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
Read more: How to Implement Google SafetyNet ReCAPTCHA in Android StudioThe SafetyNet service includes a reCAPTCHA API that you can use to protect your app from malicious traffic. In this tutorial we would see…