I have the following String which is returning from the Database in the form of List, My assumption is that, the list contains 3 items. but it is showing only \"1\" as the size.
You have to use GSON library to parse this JSON array. You need to do something similar to below code.
JSONArray jsonArray = new JSONArray(jsonArrayString); List list = new ArrayList(); for (int i=0; i