Storing and Retrieving Data Using Shared Preferences
Android Tutorials Uncategorized

Storing and Retrieving Data Using Shared Preferences

Storing and Retrieving Data Using Shared Preferences | in this tutorial, we will learn how to store and retrieve data using Shared Preferences in android.  The primary purpose of using Shared Preferences in android is to store user specific details, such as user specific settings (eg: – username), when a user logged into the application. […]

Download Image using AsyncTask Tutorial in Android
Android Sample Codes Uncategorized

Download Image using AsyncTask Tutorial in Android

Tutorial on Download Image using AsyncTask Tutorial in Android , you will learn how to download an image using URL address into your Android application. In the layout design, button click will start an AsyncTask class to begin downloading an image from a URL address specified in the Edittext control in your android application . Download […]

Broadcast Receiver
Android Sample Codes Uncategorized

Android Broadcast Receiver tutorial

What is Android Broadcast Receiver? A broadcast receiver is an Android application component which allows you to register for system generated events or application events. All registered broadcast receiver for a particular event are notified by the Android runtime once the registered event fires. The Broadcast Receiver’s job is to pass a notification to the […]