
Featured
-
Android O Released with Top 7 New Features for App Developers
Android was founded by Andy Rubin, Rich Miner, Nic
by sudhanshu.tripathi -
An Overview of Android Activity - Video Tutorial
As far as Android platform is concerned, the funda
by amit.rai -
How to get IMEI number,serial number and software version of your phone
Hello... Sometimes we need to know the country
by shahbaz.ahmmod -
Search location by using place on google map
Here below is the code for searching places by usi
by shahbaz.ahmmod -
How to know free space in sdcard android
I have written code to know free space in sdcard
by shahbaz.ahmmod
Tags
How can used Static JSON Parsing in Android
In the below example I have created Static JSON Parsing program in android. First I have added two TextView within RelativeLayout. In MainActivity I have used JSON object and JSON array JSON object within curly bracket ({) and J...
Include Empty/Null Variable to Json while serialize with Gson Android
Are you using Gson for Serializing Json String from Java Bean/Model class? If yes then It may be useful for you.
Gson ignore null/empty value while serialize Object to Json String. Like
Gson gson = new Gson();
String jsonData = gson.to...
Simple way to convert Json data to Java Model/Bean/Pojo
There is easy way to create Pojo/Bean class for any Json scheme.
http://www.jsonschema2pojo.org/
Convert json data to Gson Pojo class:
Copy and paste Json text to http://www.jsonschema2pojo.org/
Enter package name and class name f...
How to read or parse JSON in Android
There are some times during android application development when we need to interact with our server make a prominent exhibition of data inside our application. And server return the data in particular format. It is really important to know how ...