Sadece @SerializedName
tüm alanlar için kullanarak liste eşlemesini çalıştırmayı başardım .. Etrafta mantık Type
gerekmedi.
Aşağıdaki 4. adımda kodu hata ayıklayıcı aracılığıyla çalıştırarak, List<ContentImage> mGalleryImages
nesnenin JSON verileriyle doldurulduğunu gözlemleyebiliyorum
İşte bir örnek:
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. Liste ile Java sınıfı
public class FocusArea {
@SerializedName("name")
private String mName;
@SerializedName("gallery")
private List<ContentImage> mGalleryImages;
}
3. Liste öğeleri için Java sınıfı
public class ContentImage {
@SerializedName("description")
private String mDescription;
@SerializedName("photo_url")
private String mPhotoUrl;
// getters/setters ..
}
4. JSON'u işleyen Java kodu
for (String key : focusAreaKeys) {
JsonElement sectionElement = sectionsJsonObject.get(key);
FocusArea focusArea = gson.fromJson(sectionElement, FocusArea.class);
}