Skip to content

Instantly share code, notes, and snippets.

@ar-android
Last active November 30, 2015 03:05
Show Gist options
  • Select an option

  • Save ar-android/8f2e7ffdd351cc00d857 to your computer and use it in GitHub Desktop.

Select an option

Save ar-android/8f2e7ffdd351cc00d857 to your computer and use it in GitHub Desktop.
Convert JSON Array to ArrayList with Gson
Gson gson = new Gson();
Type collectionType = new TypeToken<ArrayList<UserStatus>>() {
}.getType();
data = gson.fromJson(object.toString(), collectionType);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment