How to Show Alert Dialog in Android
Creating alert dialog is very easy. In this tutorial i will be discussing about creating different alert dialogues with one button(ok button), two buttons(yes or no buttons) and three buttons(yes, no...
View ArticleAndroid making HTTP Requests
In most of the android applications it is essential that app may need to connect to internet and make some HTTP requests. In this article i’ll be demonstrating about making simple HTTP Requests in...
View ArticleAndroid Using External Fonts
Loading external fonts in your android application is very easy. It can be achieved with only two lines of code. Start a new Project 1. Create a new project and fill the required details. File ⇒ New...
View ArticleAndroid Downloading File by Showing Progress Bar
When our application does a task that takes a considerable amount of time, it is common sense to show the progress of the task to the user. This is a good User Experience practice. In this tutorial i...
View ArticleAndroid 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....
View ArticleAndroid 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...
View ArticleAndroid 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...
View Article