I'm getting from JSON string like this:
{
"name":"Google"
"items": "item1,item2,item3,item4"
}
So I want to create array String[] items
and populate it with items from this string. I need somehow to cut this string in parts. Also I'm getting different number of items, not only 4, like in example.
How can I do this....?