2015 - Page 7 of 13 - 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
Navigation Drawer

Android NavigationDrawer

You might have noticed that lot of android applications introduced a sliding panel menu to navigate between major modules of the application. Previously this kind of UI was done using some third party libraries where a list view and some swiping gestures used to achieve this. But now android itself officially introduced sliding panel menu

Read More
Toolbar

Android ToolBar

Android’s new operating system named Android Lollipop, is highly focused on rich user experience and what they called it as material design. In this example we will take a look at the new Actionbar replacement called Toolbar. What is Toolbar? Toolbar is a complete replacement to Android ActionBar. It provides greater control to customize its

Read More