Tôi đã có thể làm cho ánh xạ danh sách hoạt động chỉ với việc sử dụng @SerializedName
cho tất cả các trường .. không cần logic xung quanh Type
.
Chạy mã - trong bước # 4 bên dưới - thông qua trình gỡ lỗi, tôi có thể quan sát thấy List<ContentImage> mGalleryImages
đối tượng được điền bằng dữ liệu JSON
Đây là một ví dụ:
1. JSON
{
"name": "Some House",
"gallery": [
{
"description": "Nice 300sqft. den.jpg",
"photo_url": "image/den.jpg"
},
{
"description": "Floor Plan",
"photo_url": "image/floor_plan.jpg"
}
]
}
2. Lớp Java với Danh sách
public class FocusArea {
@SerializedName("name")
private String mName;
@SerializedName("gallery")
private List<ContentImage> mGalleryImages;
}
3. Lớp Java cho các mục Danh sách
public class ContentImage {
@SerializedName("description")
private String mDescription;
@SerializedName("photo_url")
private String mPhotoUrl;
// getters/setters ..
}
4. Mã Java xử lý JSON
for (String key : focusAreaKeys) {
JsonElement sectionElement = sectionsJsonObject.get(key);
FocusArea focusArea = gson.fromJson(sectionElement, FocusArea.class);
}