私はこのJsonステートメントを持っています:
{name=Adam Schmidt, id=43}
このコードを試して名前の値を抽出したいのですが、うまくいきませんでした
// parse json data
try {
JSONObject userObject = new JSONObject(result);
userName = userObject.getString("name");
tvName.setText(userName);
} catch (Exception ex) {
ex.printStackTrace();
}