@SerializedName
すべてのフィールドを使用するだけでリストマッピングを機能させることができましたType
。周りのロジックは必要ありませんでした。
コードを実行する- 下記の手順4で、デバッガーを介して、List<ContentImage> mGalleryImages
オブジェクトにJSONデータが入力されていることが確認できます
次に例を示します。
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.リストを含むJavaクラス
public class FocusArea {
@SerializedName("name")
private String mName;
@SerializedName("gallery")
private List<ContentImage> mGalleryImages;
}
3.リスト項目のJavaクラス
public class ContentImage {
@SerializedName("description")
private String mDescription;
@SerializedName("photo_url")
private String mPhotoUrl;
// getters/setters ..
}
4. JSONを処理するJavaコード
for (String key : focusAreaKeys) {
JsonElement sectionElement = sectionsJsonObject.get(key);
FocusArea focusArea = gson.fromJson(sectionElement, FocusArea.class);
}