在Android EditText中设置long和double值

时间:2015-10-04 21:05:49

标签: android-edittext

我希望通过适配器列表从JSON获取long或double值,并在Android中将它们设置为EditText。我该怎么做才能做到这一点?

1 个答案:

答案 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);