How to store JSON object which contain list in shared preference Json object like:
{
"id": 6,
"name": "1-B",
"section": "B",
"batchCode": "1-2015-2016-B",
"courseId": 1,
"sessionId": 2,
"course": null,
"startDate": "2015-03-31",
"endDate": "2016-03-30"
},
{
"id": 5,
"name": "1-A",
"section": "A",
"batchCode": "1-2015-2016-A",
"courseId": 1,
"sessionId": 2,
"course": null,
"startDate": "2015-03-31",
"endDate": "2016-03-30"
},
How to get data when stored in shared perfernces
Convert the JsonArray to the String by calling the following code
save it to the SharedPreferences
}
Retrieve it back!