Your experience on this site will be improved by allowing cookies
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...
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...
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.
...
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,...
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...
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...
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...
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...
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...
A QR code or barcode scanner is sometimes required in an android application. There are various ways to scan the QR code programmatically:
The...