Design

img
Design

What is Integrating LinkedIn API In Android App

By: Spoke Right / 18 Nov, 2023

To integrate the LinkedIn Sign-In functionality in an Android application, the LinkedIn API is implemented in the Android app. It thus provides the functionality to login using the LinkedIn account...

img
Design

How do I enable Google sign-in on Android

By: Spoke Right / 18 Nov, 2023

The Google API is used to integrate the Google Sign-In functionality in an Android application. To log in to an Android App using Google account, we need to integrate the Google API in the Android...

img
Design

How do I use Google reCAPTCHA on Android

By: Spoke Right / 18 Nov, 2023

Google reCaptcha is integrated into an Android application to protect the application from malicious traffic. It is implemented using The SafetyNet API is used to implement Google reCaptcha.

...

img
Design

How do I manage notifications on Android

By: Spoke Right / 18 Nov, 2023

To facilitate a piece of short, but timely information about the action happening in the application, even when the application is not running, Android Notification is used in an application. Icon,...

img
Design

How to authenticate with Firebase in Android

By: Spoke Right / 18 Nov, 2023

Android Firebase Authentication – Google Login

For the easy use of the SDKs and in-built UI libraries to authenticate the user in the application, the backend services are facilitated by th...

img
Design

What is network connectivity services on Android

By: Spoke Right / 18 Nov, 2023

We can connect to the Internet and even to a local network in Android. Thus, in Android we can perform network operations too. To check the network connectivity information of the device, the Andro...

img
Design

What is the use of volley Library in Android

By: Spoke Right / 18 Nov, 2023

To fetch the JSON data from the URL, the Volley library is used. The Volley library and JSON can be used to create a basic user registration and log-in module. The facilities for network connectivi...

img
Design

How do you swipe to refresh on Android

By: Spoke Right / 18 Nov, 2023

The SwipeRefreshLayout widget is used to create swipe-to-refresh functionality in Android. An OnRefreshListener method is added by the instance of the SwipeRefreshLayout. This instance also impleme...

img
Design

How do RecyclerView Android Swipe To Delete item with UNDO

By: Spoke Right / 18 Nov, 2023

The ItemTouchHelper class added in Android Support Library V7 can be used to delete an item of RecyclerView by swiping the item with undo functionality. Or in other words, we can create a swipe to...

img
Design

How i can Android QR Code / Barcode Scanner

By: Spoke Right / 18 Nov, 2023

A QR code or barcode scanner is sometimes required in an android application. There are various ways to scan the QR code programmatically:

  • Using a web-based API solution:

The...