how to parse android volley gson request to a list / collection of objects
问题 I am trying to make a Gson request using android volley. Currently it it working correctly and I am very happy. However why I try and get a List<> or a collection of objects my code no longer works. Current code: public class ReviewModel { public long Id; public Strring Description; } here is how I use my gson class: GsonRequest<ReviewModel> jsObjRequest = new GsonRequest<ReviewModel>(Request.Method.GET, url, ReviewModel.class, new Response.Listener<ReviewModel>() { @Override public void