0
我想通過適配器列表從JSON中獲取長或雙值,並將它們設置爲Android中的EditText
。我該如何做這項工作?在Android中設置long和double值EditText
我想通過適配器列表從JSON中獲取長或雙值,並將它們設置爲Android中的EditText
。我該如何做這項工作?在Android中設置long和double值EditText
如果您正在使用的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);