converting JSON to Java objects vice versa. Benefits using GSON:
1. Its very handy to use.
2. The number of codes will be lessen.
3. Once you converted Java objects to JSON you can now pass it thru intent bundle as a String.
Heres a step by step sample How GSON can help you to parse JSON objects To Java Pojo.
GSON PART:
1.) Create a directory under main folder name it “assets”
src > main > assets
2.) Create a File “androidwear.json”
src > main > assets > androidwear.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"watches": [ | |
{ | |
"name" : "ZTE quartz", | |
"price": "$130" | |
}, | |
{ | |
"name" : "New Balance RunIQ", | |
"price": "$190" | |
}, | |
{ | |
"name" : "Casio PRO TREK Smart", | |
"price": "$159" | |
}, | |
{ | |
"name" : "LG Watch Style", | |
"price": "$170" | |
}, | |
{ | |
"name" : "LG Watch Sport", | |
"price": "$220" | |
}, | |
{ | |
"name" : "Michael Kors Smart Watch", | |
"price": "$322" | |
}, | |
{ | |
"name" : "Montblanc Summit", | |
"price": "$200" | |
}, | |
{ | |
"name" : "Huawei Watch 2", | |
"price": "$199" | |
}, | |
{ | |
"name" : "Polar M600", | |
"price": "$212" | |
} | |
] | |
} |
3.) Create class name “BaseWatch.java”
src > main > java > {package name} > BaseWatch.java
Basically this BaseWatch will serve as JSON parser that uses Google GSON library.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.eugenealvizo.samplegson; | |
import com.google.gson.annotations.Expose; | |
import com.google.gson.annotations.SerializedName; | |
import java.util.ArrayList; | |
import java.util.List; | |
/** | |
* Created by eugene on 5/18/17. | |
*/ | |
public class BaseWatch { | |
@SerializedName("watches") | |
@Expose | |
private List<Watch> watches = new ArrayList<>(); | |
public List<Watch> getWatches() { | |
return watches; | |
} | |
public void setWatches(List<Watch> watches) { | |
this.watches = watches; | |
} | |
} |
src > main > java > {package name} > Watch.java
This class also serve as JSON parser it will get the inner data of androidwear.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.eugenealvizo.samplegson; | |
import com.google.gson.annotations.Expose; | |
import com.google.gson.annotations.SerializedName; | |
/** | |
* Created by eugene on 5/18/17. | |
*/ | |
public class Watch { | |
@SerializedName("name") | |
@Expose | |
private String name; | |
@SerializedName("price") | |
@Expose | |
private String price; | |
public String getName() { | |
return name; | |
} | |
public void setName(String name) { | |
this.name = name; | |
} | |
public String getPrice() { | |
return price; | |
} | |
public void setPrice(String price) { | |
this.price = price; | |
} | |
} |
VIEW PART:
5.) After doing the 4 steps above we need to create two layouts for the Activity and Adapter;
5.1) Create a xml file “activity_main.xml”
res > layout > activity main.xml
this will serves as the main display container of the app.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<RelativeLayout | |
xmlns:android="http://schemas.android.com/apk/res/android" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent"> | |
<ListView | |
android:id="@+id/listView" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent"> | |
</ListView> | |
</RelativeLayout> |
5.2) Create a xml file “list_item_watch.xml”
res > layout > list_item_watch.xml
this will be the view for the list item.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
android:orientation="horizontal" | |
android:layout_width="match_parent" | |
android:layout_height="120dp"> | |
<TextView | |
android:id="@+id/watchnameTxt" | |
android:layout_width="0dp" | |
android:layout_height="match_parent" | |
android:layout_weight=".1" | |
android:gravity="center" | |
android:text="Watches Name" | |
android:textSize="15dp" | |
android:textStyle="bold" | |
/> | |
<TextView | |
android:id="@+id/watchpriceTxt" | |
android:layout_width="0dp" | |
android:layout_height="match_parent" | |
android:layout_weight=".1" | |
android:gravity="center" | |
android:text="$200" | |
android:textSize="15dp" | |
android:textColor="@color/colorAccent"/> | |
</LinearLayout> |
6.) Once you already finished creating the two layouts, the next step will be create the “MainActivity.java”.
src > main > java > {package name } > MainActivity.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.eugenealvizo.samplegson; | |
import android.support.v7.app.AppCompatActivity; | |
import android.os.Bundle; | |
import android.util.Log; | |
import android.widget.ListView; | |
import java.io.IOException; | |
import java.io.InputStream; | |
import java.util.List; | |
import com.google.gson.Gson; | |
public class MainActivity extends AppCompatActivity { | |
private final static String JSON_FILE_ANDROID_WEAR = "androidwear.json"; | |
private final static String TAG = "MainActivity"; | |
private WatchAdapter watchAdapter; | |
private ListView listView; | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
setContentView(R.layout.activity_main); | |
init(); | |
} | |
public void init() { | |
listView = (ListView) findViewById(R.id.listView); | |
watchAdapter = new WatchAdapter(MainActivity.this, getWatchesData()); | |
listView.setAdapter(watchAdapter); | |
} | |
/* Convert JSON String to BaseWatch Model via GSON */ | |
public List<Watch> getWatchesData() { | |
String jsonString = getAssetsJSON(JSON_FILE_ANDROID_WEAR); | |
Log.d(TAG, "Json: " + jsonString); | |
Gson gson = new Gson(); | |
BaseWatch baseWatch = gson.fromJson(jsonString, BaseWatch.class); | |
return baseWatch.getWatches(); | |
} | |
/* Get File in Assets Folder */ | |
public String getAssetsJSON(String fileName) { | |
String json = null; | |
try { | |
InputStream inputStream = this.getAssets().open(fileName); | |
int size = inputStream.available(); | |
byte[] buffer = new byte[size]; | |
inputStream.read(buffer); | |
inputStream.close(); | |
json = new String(buffer, "UTF-8"); | |
} catch (IOException e) { | |
e.printStackTrace(); | |
} | |
return json; | |
} | |
} |
7.) After that, Create a class “WatchAdapter.java” this class will be the incharge of inflating the data to ListItem.
src > main > java > {package name } > WatchAdapter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.eugenealvizo.samplegson; | |
import android.content.Context; | |
import android.view.LayoutInflater; | |
import android.view.View; | |
import android.view.ViewGroup; | |
import android.widget.BaseAdapter; | |
import android.widget.TextView; | |
import java.util.List; | |
/** | |
* Created by eugene on 5/18/17. | |
*/ | |
public class WatchAdapter extends BaseAdapter { | |
Context context; | |
List<Watch> dataList; | |
private View vi; | |
private ViewHolder viewHolder; | |
private static LayoutInflater inflater = null; | |
public WatchAdapter(Context context, List<Watch> dataList){ | |
this.context = context; | |
this.dataList = dataList; | |
inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); | |
} | |
@Override | |
public int getCount() { | |
return dataList.size(); | |
} | |
@Override | |
public Object getItem(int i) { | |
return i; | |
} | |
@Override | |
public long getItemId(int i) { | |
return i; | |
} | |
@Override | |
public View getView(int position, View view, ViewGroup viewGroup) { | |
vi = view; | |
//Populate the Listview | |
final int pos = position; | |
Watch watch = dataList.get(pos); | |
if(vi == null) { | |
vi = inflater.inflate(R.layout.listitem_watch, viewGroup, false); | |
viewHolder = new ViewHolder(); | |
viewHolder.name = (TextView) vi.findViewById(R.id.watchnameTxt); | |
viewHolder.price = (TextView) vi.findViewById(R.id.watchpriceTxt); | |
vi.setTag(viewHolder); | |
}else | |
viewHolder = (ViewHolder) view.getTag(); | |
viewHolder.name.setText(watch.getName()); | |
viewHolder.price.setText(watch.getPrice()); | |
return vi; | |
} | |
public class ViewHolder{ | |
TextView name; | |
TextView price; | |
} | |
} |
Note: If you are still not knowledgable with BaseAdapter you can visit this first readme
8.) Heres my default Build Gradle Dependencies together with Google GSON
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dependencies { | |
compile fileTree(dir: 'libs', include: ['*.jar']) | |
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { | |
exclude group: 'com.android.support', module: 'support-annotations' | |
}) | |
compile 'com.android.support:appcompat-v7:25.2.0' | |
compile 'com.android.support.constraint:constraint-layout:1.0.2' | |
testCompile 'junit:junit:4.12' | |
compile 'com.google.code.gson:gson:2.8.0' | |
} |
SCREENSHOT


Download Source Code via Github