Android JSONObject十进制不显示

时间:2015-01-21 12:55:53

标签: android json android-listview

我在将一个JSONObjects显示在ListView中时遇到了一些麻烦。我正在使用标准的JSON Parser,Async Task等,除了一个特定的字符串之外,所有内容都可以正常工作。这是我的代码片段:

JSON:

{
       "item": "Item name",
       "quantity": "67",
       "unit": "m",
       "total": "603.00"
 },

机器人:

if (jsonStr != null) {
try {
    JSONObject jsonObj = new JSONObject(jsonStr);

    items = jsonObj.getJSONArray(TAG_ITEMS);

    for (int a = 0; a < items.length(); a++) {
        JSONObject l = items.getJSONObject(a);

        String item = l.getString(TAG_ITEM_NAME);
        String unit = l.getString(TAG_UNIT);
        String total = l.getString(TAG_TOTAL);
        String quantity = l.getString(TAG_QUANTITY);

        Log.d("item got: ", "> " + item);
        Log.d("unit got: ", "> " + unit);
        Log.d("total got: ", "> " + total);
        Log.d("qty got: ", "> " + quantity);

        HashMap<String, String> myItems = new HashMap<String, String>();

        myItems.put(TAG_ITEM_NAME, item);
        myItems.put(TAG_UNIT, unit);
        myItems.put(TAG_TOTAL, total);
        myItems.put(TAG_QUANTITY, quantity);

        itemList.add(myItems);
        }

    } catch (JSONException e) {
                e.printStackTrace();
            }
    } else {
            Log.e("ServiceHandler", "Couldn't get any data from the url");
    }

return null;
    }

    @Override
    protected void onPostExecute(Void result) {
        super.onPostExecute(result);
        // Dismiss the progress dialog
        if (pDialog.isShowing())
            pDialog.dismiss();
        /**
         * Updating parsed JSON data into ListView
         * */
        ListAdapter adapter = new SimpleAdapter(ItemsActivity.this,
                itemList, R.layout.item_list_item,
                new String[] { TAG_ITEM_NAME, TAG_UNIT, TAG_TOTAL, TAG_QUANTITY }, 
                new int[] { R.id.itemName, R.id.unit, R.id.total, R.id.quantity});

        setListAdapter(adapter);
    }

XML:

<TextView
    android:id="@+id/itemName"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" />

<TextView
    android:id="@+id/total"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" />

<TextView
    android:id="@+id/unit"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" />

<TextView
    android:id="@+id/quantity"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" />

现在,根据日志,所有四个都是'得到',但是当我尝试将它们放入我的ListView时,总计(小数点)将不会显示。单个数字和其他非十进制数字显示完美,一切都是JSON中的字符串,为什么我不能显示我的总数?

...困惑

1 个答案:

答案 0 :(得分:-1)

使用此,

findViewById(R.id.itemName).setText(myItems.get(TAG_ITEM_NAME));

但在此之前,myItems可以访问。