I am using Retrofit concept, I need to pass the list value to activity. Here I attached the code where I get the response from backend.
private void callCheckTopCourseDetails(String getId) {
APIInterface apiInterface = APIClient.getClient().create(APIInterface.class);
Call<Example> call2 = apiInterface.doGetWishlist(getId);
call2.enqueue(new Callback<Example>() {
@Override
public void onResponse(Call<Example> call, Response<Example> response) {
if (response.code() == RESPONSECODE_200 || response.code() == RESPONSECODE_201) {
List<RatingsDetail> getRatingDetails = response.body().getAndroid().getRatingsDetails();
List<CourseDetail> getCourseDetail = response.body().getAndroid().getCoursedetails();
}
}
@Override
public void onFailure(Call<Example> call, Throwable t) {
Log.i("ttttttttt", "" + t);
call.cancel();
}
});
}
I passed like this,its working for me