我正在使用 sharedPreference( jsonObject.toString()
) 在我的应用程序中保存一个 json 响应。它包含JSONArray
,当用户更新任何一个元素的某些值时,我希望将更新的更改保存在 sharedPreference 上。请帮助我完成这项任务。
例子:-
{
"locations": {
"record": [
{
"id": 8817,
"loc": "NEW YORK CITY"//update this as California and save the response
},
{
"id": 2873,
"loc": "UNITED STATES"
},
{
"id": 1501
"loc": "NEW YORK STATE"
}
]
}
}