How to form JSONObject in Android
I need help with form json object like this..
"Members":[{
"Id":"98",
"ActionId":"1",
"Notify":"Y"
},
{
"Id":"104",
"ActionId":"2",
"Notify":"N"
},
{
"Id":"108",
"ActionId":"3",
"Notify":"Y"
}
]
i want to form Members object dynamically,How will i form this kind of JSON Object in 开发者_Python百科android .please help me.. Thanks Friends,
Refer these example to achieve your target,
Examples
精彩评论