从android中的方法访问JSON数据

时间:2018-11-19 23:04:19

标签: java android json xml

将在JSONObject中保存属性然后返回对象属性的类示例

class OperatorProperties {

 JSONObject TigoProperties()
    {
        JSONObject property = new JSONObject();

        try {
            property.put("color", "#223f99");
            property.put("logo", R.drawable.tigo);
        }catch (JSONException e){
            e.printStackTrace();
        }

        return property;
    }
 }

问题,我不知道如何从JSONObejct获取属性详细信息

JSONObject d = OperatorProperties.TigoProperties();
operatorLogo.setImageResource(d);

请提供任何帮助,因为我只是希望每个属性都应来自JSONObject

0 个答案:

没有答案