I am getting json response in array form like this
["Monday","Wednesday","Friday"]
, but it is not saving as a array in android, I am storing that in a string like this
String daysOfInterest = map.get("daysOfinterest");
[{"careTypeId":"10","careTypeName":"Vacation Care","daysOfinterest":["Tuesday","Thursday","Saturday"],"childDaysOfInterestId":"424"},
{"careTypeId":"10","careTypeName":"Vacation Care","daysOfinterest":["Monday","Wednesday","Friday"],"childDaysOfInterestId":"425"}]
this is my response and I am storing that daysofInterest in hashmap...and getting using hashmap
But I want to get that in a array form