android user session management

Android User Session Management using Shared Preferences

Session are useful when you want to store user data globally through out the application. This can be done in two ways. One is storing them in a global variables and second is storing the data in shared preferences. The …

Read More..

Advertisement
android loading image from url

Android Loading Image from URL (HTTP)

I am writing this tutorial as lot of people are asking me about loading an image into imageview. Just by adding url to ImageView won’t load directly. Instead we need to store the image into cache (temporary location) and attach …

Read More..

android detect internet connectivity

Android Detect Internet Connection Status

It is better to check internet connectivity status before making any HTTP Requests to avoid http exceptions. This tutorial will explain how to detect internet connection status in your applications. Create new Project 1. Create a new project in Eclipse …

Read More..