我希望通过适配器列表从JSON获取long或double值,并在Android中将它们设置为EditText
。我该怎么做才能做到这一点?
答案 0 :(得分:0)
如果您使用的是JSONObject类,则可以使用
try {
long l = object.getLong(key); // throws exception if there's no long at that key
}
catch(JSONException json) {}
或
long l = object.optLong(key); // instead of throwing exception returns 0
然后做
editText.setText("" + l);