July 2015 - Page 3 of 3 - Androhub

JSON Maker

Android JSON Maker

In last tutorial JSON Parser we learned how to parse JSON data from local file and from server. Sometimes we have to send data to server in JSON format like to store address in server database, etc. so for that we have to encode our data into JSON for server. For this Android provide us several

Read More
Http Request Banner

Android 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 tutorial i’ll be demonstrating about making simple HTTP Requests/Calls in Android. There are several steps in HTTP Requests. So read all steps one by one : 1. HTTP POST Creating HTTP Client

Read More
JSON Parser Banner

Android JSON Parser

JSON stands for JavaScript Object Notation.It is an independent data exchange format and is the best alternative for XML. JSON is very light weight, structured, easy to parse and much human readable. In this tutorial we are going to learn how to parse JSON in android. In this tutorial we will use Http Requests since

Read More
Time and Date Picker Dialog

Android Date and Time Picker Dialog

Date Picker Dialog and Time Picker Dialog in Android use to select a date and time, as it will be popup when you needed. While Time Picker and Date Picker widget occupy more space on screen. Dialogs are best way to solve this issue. Example In this tutorial, we are going to demonstrate the use

Read More