我正在创建一个android应用程序,并试图通过json从restful web服务检索数据。
我使用来自restful web服务(来自url)的get和post json数据执行了一个调用。
通过this教程
所以这里我需要加上价格*数量
比如下面的例子:
但我不知道如何发布json数据的计算
我在谷歌上搜索并尝试了其他几种选择…
有谁能建议我使用这种类型的post-json数据..
我跟随this发布json数据
但这应该做一次点击,它应该要求添加输入数量。
脱机(DB)是可能的,但对于自定义ListView(异步ListView联机),我无法生成
请让我知道用这种…
我在谷歌上搜索了很多选项,但我帮不了多少忙…

最佳答案

当我理解你的问题时,我试图给出如下的答案。我希望你能理解模型类的概念,这会让生活更轻松。
步骤1:
首先创建一个模型类并使其可序列化以传递模型对象,因为我可以看到您有两个活动,一个用于产品列表,另一个用于记帐。在这里,您可以根据需要添加/删除一些字段。

public class Product implements Serializable {
    public String productName;
    public int price;
    public int quantity;
    public int total;
}

步骤2:现在我假设您知道如何使用gson库、link1link2将数据分配给arraylist用户产品。
步骤-3:下一步将是在listview setonitemclicklistener中这样计算total=price*quantity,
Product product = userProducts.get(postiton);
product.total = product.price * product.quantity;

步骤4:将带有可序列化对象的ArrayList从一个活动发送到另一个活动,
    Intent intent = new Intent(ProductActivity.this, BillingActivity.class);
    intent.putExtra("user_products", userProducts);
    startActivity(intent);

步骤5:获取计费活动中的值,
    if (getIntent() != null) {
        userProducts = (ArrayList<Product>) getIntent()
                .getSerializableExtra("user_products");
    }

第六步:现在你的问题是如何发布它们?问题是,您必须为产品列表创建jsonarray,为其他一些字段创建jsonobject,然后您可以将主jsonobject作为字符串发送,非常好的tutorial
    try {
        JSONObject mainJObject = new JSONObject();
        JSONArray productJArray = new JSONArray();
        for (int i = 0; i < userProducts.size(); i++) {
            JSONObject productJObject = new JSONObject();
            productJObject.put("productname", userProducts.get(i).productName);
            productJObject.put("price", userProducts.get(i).price);
            productJObject.put("quantity", userProducts.get(i).quantity);
            productJObject.put("total", userProducts.get(i).total);
            productJArray.put(productJObject);
        }
        mainJObject.put("products", productJArray);
        mainJObject.put("grandd_total", grandTotal);
    } catch (Exception e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

应该是这样的,
        {
          "products": [
            {
              "productname": "p1",
              "price": "15",
              "quantity": "6",
              "total": 90
            },
            {
              "productname": "p2",
              "price": "25",
              "quantity": "4",
              "total": 100
            }
          ],
          "grandd_total": 190
        }

09-26 20:34
查看更多