Android – 如何使用Volley库将多维JSON结果处理成下拉列表(Spinner)?

huangapple 未分类评论49阅读模式
英文:

Android - How to handle multidimensional JSON results into a spinner using Volley library

问题

JSON 响应:

{
  "responce": "true",
  "top_selling_product": [
    {
      "product_id": "10",
      "product_name": "Palm Ruchi (Pack of 10)",
      "product_description": "",
      "variants": [
        {
          "variant_id": "7",
          "variant_name": "2L",
          "in_stock": "0",
          "price": "120",
          "mrp": "130",
          "unit_value": "25"
        },
        {
          "variant_id": "8",
          "variant_name": "5L",
          "in_stock": "1",
          "price": "240",
          "mrp": "255",
          "unit_value": "25"
        },
        {
          "variant_id": "9",
          "variant_name": "10L",
          "in_stock": "1",
          "price": "0",
          "mrp": "0",
          "unit_value": "0"
        }
      ]
    },
    // ... Other products ...
  ]
}

Top_Selling_model.java:

package Model;

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

import java.io.Serializable;
import java.util.List;

public class Top_Selling_model implements Serializable {

    @SerializedName("product_id")
    @Expose
    private String productId;

    // ... Other fields ...

    @SerializedName("variants")
    @Expose
    private List<VariantsModel> variants = null;

    // ... Other methods ...
}

Variants_model.java:

package Model;

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

import java.io.Serializable;

public class VariantsModel implements Serializable {

    @SerializedName("variant_id")
    @Expose
    private String variantId;
    // ... Other fields ...
}

Top_Selling_Adapter.java:

package Adapter;

import android.content.Context;
import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;

import com.bumptech.glide.Glide;
import com.bumptech.glide.load.engine.DiskCacheStrategy;

import java.util.List;

import Config.BaseURL;
import Model.Top_Selling_model;
import gogrocer.tcc.R;

public class Top_Selling_Adapter extends RecyclerView.Adapter<Top_Selling_Adapter.MyViewHolder> {

    private List<Top_Selling_model> modelList;
    private Context context;

    public class MyViewHolder extends RecyclerView.ViewHolder {
        public TextView product_nmae, product_prize;
        public ImageView image;

        public MyViewHolder(View view) {
            super(view);
            product_nmae = view.findViewById(R.id.product_name);
            product_prize = view.findViewById(R.id.product_prize);
            image = view.findViewById(R.id.iv_icon);
        }
    }

    public Top_Selling_Adapter(List<Top_Selling_model> modelList) {
        this.modelList = modelList;
    }

    @Override
    public MyViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
        View itemView = LayoutInflater.from(parent.getContext())
                .inflate(R.layout.row_top_selling, parent, false);
        context = parent.getContext();
        return new MyViewHolder(itemView);
    }

    @Override
    public void onBindViewHolder(MyViewHolder holder, int position) {
        Top_Selling_model mList = modelList.get(position);

        Glide.with(context)
                .load(BaseURL.IMG_PRODUCT_URL + mList.getProductImage())
                .placeholder(R.drawable.icon)
                .diskCacheStrategy(DiskCacheStrategy.ALL)
                .into(holder.image);

        holder.product_prize.setText(context.getResources().getString(R.string.currency) + mList.getVariants().get(position).getPrice());

        holder.product_nmae.setText(mList.getProductName());
    }

    @Override
    public int getItemCount() {
        return modelList.size();
    }
}

Home_fragment.java:

private void make_top_selling() {
    // ... Other code ...

    jsonObjReq = new CustomVolleyJsonRequest(Request.Method.POST,
            BaseURL.GET_TOP_SELLING_PRODUCTS, params, new Response.Listener<JSONObject>() {
        @Override
        public void onResponse(JSONObject response) {
            // ... Other code ...

            if (status) {
                Type listType = new TypeToken<List<Top_Selling_model>>() {}.getType();
                top_selling_models = gson.fromJson(response.getString("top_selling_product"), listType);
                top_selling_adapter = new Top_Selling_Adapter(top_selling_models);
                rv_top_selling.setAdapter(top_selling_adapter);
                top_selling_adapter.notifyDataSetChanged();
            }
        }
    }, new Response.ErrorListener() {
        @Override
        public void onErrorResponse(VolleyError error) {
            // ... Other code ...
        }
    });

    // ... Other code ...
}

Please note that the provided code snippets are not executable on their own and might require additional adjustments depending on your project structure and dependencies.

英文:

I have a listview of products displayed on my android app. I am using a web service that returns a JSON. Earlier I had only a flat list of products to display. But now for each list, I have to add a spinner with the variants values from JSON. How do I achieve this?

My present code gives me the below error

com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was BEGIN_ARRAY at line 1 column 168 path $[0].variants

Below is my code :

JSON response

{
&quot;responce&quot;: &quot;true&quot;,
&quot;top_selling_product&quot;: [
{
&quot;product_id&quot;: &quot;10&quot;,
&quot;product_name&quot;: &quot;Palm Ruchi (Pack of 10)&quot;,
&quot;product_name_arb&quot;: &quot;&quot;,
&quot;product_description_arb&quot;: &quot;&quot;,
&quot;category_id&quot;: &quot;8&quot;,
&quot;product_description&quot;: &quot;&quot;,
&quot;variants&quot;: [
{
&quot;variant_id&quot;: &quot;7&quot;,
&quot;variant_name&quot;: &quot;2L&quot;,
&quot;in_stock&quot;: &quot;0&quot;,
&quot;price&quot;: &quot;120&quot;,
&quot;mrp&quot;: &quot;130&quot;,
&quot;unit_value&quot;: &quot;25&quot;
},
{
&quot;variant_id&quot;: &quot;8&quot;,
&quot;variant_name&quot;: &quot;5L&quot;,
&quot;in_stock&quot;: &quot;1&quot;,
&quot;price&quot;: &quot;240&quot;,
&quot;mrp&quot;: &quot;255&quot;,
&quot;unit_value&quot;: &quot;25&quot;
},
{
&quot;variant_id&quot;: &quot;9&quot;,
&quot;variant_name&quot;: &quot;10L&quot;,
&quot;in_stock&quot;: &quot;1&quot;,
&quot;price&quot;: &quot;0&quot;,
&quot;mrp&quot;: &quot;0&quot;,
&quot;unit_value&quot;: &quot;0&quot;
}
],
&quot;product_image&quot;: &quot;product-placeholder2.jpg&quot;,
&quot;status&quot;: &quot;&quot;,
&quot;unit&quot;: &quot;Box&quot;,
&quot;increment&quot;: &quot;0&quot;,
&quot;rewards&quot;: &quot;0&quot;,
&quot;stock&quot;: &quot;&quot;,
&quot;title&quot;: &quot;Oil&quot;
},
{
&quot;product_id&quot;: &quot;11&quot;,
&quot;product_name&quot;: &quot;Sunflower Sunrich 1 ltr Box(pack of 10)&quot;,
&quot;product_name_arb&quot;: &quot;&quot;,
&quot;product_description_arb&quot;: &quot;&quot;,
&quot;category_id&quot;: &quot;8&quot;,
&quot;product_description&quot;: &quot;&quot;,
&quot;variants&quot;: [],
&quot;product_image&quot;: &quot;product-placeholder3.jpg&quot;,
&quot;status&quot;: &quot;&quot;,
&quot;unit&quot;: &quot;Box&quot;,
&quot;increment&quot;: &quot;0&quot;,
&quot;rewards&quot;: &quot;0&quot;,
&quot;stock&quot;: &quot;&quot;,
&quot;title&quot;: &quot;Oil&quot;
},
{
&quot;product_id&quot;: &quot;26&quot;,
&quot;product_name&quot;: &quot;TestName4&quot;,
&quot;product_name_arb&quot;: &quot;&quot;,
&quot;product_description_arb&quot;: &quot;&quot;,
&quot;category_id&quot;: &quot;8&quot;,
&quot;product_description&quot;: &quot;TestAddress4&quot;,
&quot;variants&quot;: [],
&quot;product_image&quot;: &quot;img8&quot;,
&quot;status&quot;: &quot;&quot;,
&quot;unit&quot;: &quot;kg&quot;,
&quot;increment&quot;: &quot;1&quot;,
&quot;rewards&quot;: &quot;20&quot;,
&quot;stock&quot;: &quot;&quot;,
&quot;title&quot;: &quot;Oil&quot;
}
]
}

Top_Selling_model.java


import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;



public class Top_Selling_model implements Serializable {

    @SerializedName(&quot;product_id&quot;)
    @Expose
    private String productId;
    @SerializedName(&quot;product_name&quot;)
    @Expose
    private String productName;
    @SerializedName(&quot;product_name_arb&quot;)
    @Expose
    private String productNameArb;
    @SerializedName(&quot;product_description_arb&quot;)
    @Expose
    private String productDescriptionArb;
    @SerializedName(&quot;category_id&quot;)
    @Expose
    private String categoryId;
    @SerializedName(&quot;product_description&quot;)
    @Expose
    private String productDescription;
    @SerializedName(&quot;variants&quot;)
    @Expose
    private List&lt;VariantsModel&gt; variants = null;
    @SerializedName(&quot;product_image&quot;)
    @Expose
    private String productImage;
    @SerializedName(&quot;status&quot;)
    @Expose
    private String status;
    @SerializedName(&quot;unit&quot;)
    @Expose
    private String unit;
    @SerializedName(&quot;increment&quot;)
    @Expose
    private String increment;
    @SerializedName(&quot;rewards&quot;)
    @Expose
    private String rewards;
    @SerializedName(&quot;stock&quot;)
    @Expose
    private String stock;
    @SerializedName(&quot;title&quot;)
    @Expose
    private String title;

    public String getProductId() {
        return productId;
    }

    public void setProductId(String productId) {
        this.productId = productId;
    }

    public String getProductName() {
        return productName;
    }

    public void setProductName(String productName) {
        this.productName = productName;
    }

    public String getProductNameArb() {
        return productNameArb;
    }

    public void setProductNameArb(String productNameArb) {
        this.productNameArb = productNameArb;
    }

    public String getProductDescriptionArb() {
        return productDescriptionArb;
    }

    public void setProductDescriptionArb(String productDescriptionArb) {
        this.productDescriptionArb = productDescriptionArb;
    }

    public String getCategoryId() {
        return categoryId;
    }

    public void setCategoryId(String categoryId) {
        this.categoryId = categoryId;
    }

    public String getProductDescription() {
        return productDescription;
    }

    public void setProductDescription(String productDescription) {
        this.productDescription = productDescription;
    }

    public List&lt;VariantsModel&gt; getVariants() {
        return variants;
    }

    public void setVariants(List&lt;VariantsModel&gt; variants) {
        this.variants = variants;
    }

    public String getProductImage() {
        return productImage;
    }

    public void setProductImage(String productImage) {
        this.productImage = productImage;
    }

    public String getStatus() {
        return status;
    }

    public void setStatus(String status) {
        this.status = status;
    }

    public String getUnit() {
        return unit;
    }

    public void setUnit(String unit) {
        this.unit = unit;
    }

    public String getIncrement() {
        return increment;
    }

    public void setIncrement(String increment) {
        this.increment = increment;
    }

    public String getRewards() {
        return rewards;
    }

    public void setRewards(String rewards) {
        this.rewards = rewards;
    }

    public String getStock() {
        return stock;
    }

    public void setStock(String stock) {
        this.stock = stock;
    }

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }




}

Variants_model.java


import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

import java.io.Serializable;

public class VariantsModel implements Serializable {

    @SerializedName(&quot;variant_id&quot;)
    @Expose
    private String variantId;
    @SerializedName(&quot;variant_name&quot;)
    @Expose
    private String variantName;
    @SerializedName(&quot;in_stock&quot;)
    @Expose
    private String inStock;
    @SerializedName(&quot;price&quot;)
    @Expose
    private String price;
    @SerializedName(&quot;mrp&quot;)
    @Expose
    private String mrp;
    @SerializedName(&quot;unit_value&quot;)
    @Expose
    private String unitValue;

    public String getVariantId() {
        return variantId;
    }

    public void setVariantId(String variantId) {
        this.variantId = variantId;
    }

    public String getVariantName() {
        return variantName;
    }

    public void setVariantName(String variantName) {
        this.variantName = variantName;
    }

    public String getInStock() {
        return inStock;
    }

    public void setInStock(String inStock) {
        this.inStock = inStock;
    }

    public String getPrice() {
        return price;
    }

    public void setPrice(String price) {
        this.price = price;
    }

    public String getMrp() {
        return mrp;
    }

    public void setMrp(String mrp) {
        this.mrp = mrp;
    }

    public String getUnitValue() {
        return unitValue;
    }

    public void setUnitValue(String unitValue) {
        this.unitValue = unitValue;
    }

}

Top_selling_Adapter.java


import android.content.Context;
import android.content.SharedPreferences;
import android.support.v7.widget.RecyclerView;
import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.Spinner;
import android.widget.TextView;

import com.bumptech.glide.Glide;
import com.bumptech.glide.load.engine.DiskCacheStrategy;

import java.util.ArrayList;
import java.util.List;

import Config.BaseURL;
import Model.Top_Selling_model;
import gogrocer.tcc.R;

import static android.content.Context.MODE_PRIVATE;


public class Top_Selling_Adapter extends RecyclerView.Adapter&lt;Top_Selling_Adapter.MyViewHolder&gt; {

    private List&lt;Top_Selling_model&gt; modelList;
    ArrayList&lt;String&gt; variantsData = new ArrayList&lt;&gt;();
    private Context context;
SharedPreferences preferences;
    public class MyViewHolder extends RecyclerView.ViewHolder {
        public TextView product_nmae, product_prize;
        public ImageView image;
        public Spinner spinner;

        public MyViewHolder(View view) {
            super(view);
            product_nmae = (TextView) view.findViewById(R.id.product_name);
            product_prize = (TextView) view.findViewById(R.id.product_prize);
            image = (ImageView) view.findViewById(R.id.iv_icon);
            spinner=(Spinner) view.findViewById(R.id.variants);

        }
    }

    public Top_Selling_Adapter(List&lt;Top_Selling_model&gt; modelList) {
        this.modelList = modelList;
    }

    @Override
    public Top_Selling_Adapter.MyViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
        View itemView = LayoutInflater.from(parent.getContext())
                .inflate(R.layout.row_top_selling, parent, false);
        context = parent.getContext();
        return new Top_Selling_Adapter.MyViewHolder(itemView);
    }
    @Override
    public void onBindViewHolder(Top_Selling_Adapter.MyViewHolder holder, int position) {
        Top_Selling_model mList = modelList.get(position);
         preferences = context.getSharedPreferences(&quot;lan&quot;, MODE_PRIVATE);
    String language=preferences.getString(&quot;language&quot;,&quot;&quot;);
        Glide.with(context)
                .load(BaseURL.IMG_PRODUCT_URL + mList.getProduct_image())
                .placeholder(R.drawable.icon)
                .crossFade()
                .diskCacheStrategy(DiskCacheStrategy.ALL)
                .dontAnimate()
                .into(holder.image);
      //  variantsData.add(mList.getVariants().getVariantName());
        Log.e(&quot;Top_selling_array&quot;,mList.getVariants().getVariantName());
        holder.product_prize.setText(context.getResources().getString(R.string.currency) + mList.getVariants().getPrice());
       // Log.e(&quot;Top_selling_array&quot;,mList.getVariants().toString());
        if (language.contains(&quot;english&quot;)) {
            holder.product_nmae.setText(mList.getProduct_name());
        }
        else {
            holder.product_nmae.setText(mList.getProduct_name_arb());

        }

    }

    @Override
    public int getItemCount() {
        return modelList.size();
    }

}

Home_fragment.java

private void make_top_selling() {
        String tag_json_obj = &quot;json_category_req&quot;;
        ArrayList&lt;VariantsModel&gt; variantsList = new ArrayList&lt;VariantsModel&gt;();
        isSubcat = false;
        Map&lt;String, String&gt; params = new HashMap&lt;String, String&gt;();
        params.put(&quot;parent&quot;, &quot;&quot;);
        isSubcat = true;
       /* if (parent_id != null &amp;&amp; parent_id != &quot;&quot;) {
        }*/

        CustomVolleyJsonRequest jsonObjReq = new CustomVolleyJsonRequest(Request.Method.POST,
                BaseURL.GET_TOP_SELLING_PRODUCTS, params, new Response.Listener&lt;JSONObject&gt;() {

            @Override
            public void onResponse(JSONObject response) {
                Log.d(TAG, response.toString());

                try {
                    if (response != null &amp;&amp; response.length() &gt; 0) {
                        Boolean status = response.getBoolean(&quot;responce&quot;);
                        if (status) {
                            Gson gson = new Gson();
                            Type listType = new TypeToken&lt;List&lt;Top_Selling_model&gt;&gt;() {
                            }.getType();
                            Type listType2 = new TypeToken&lt;List&lt;VariantsModel&gt;&gt;() {
                            }.getType();
                            top_selling_models = gson.fromJson(response.getString(&quot;top_selling_product&quot;), listType);
                            top_selling_adapter = new Top_Selling_Adapter(top_selling_models);
                            rv_top_selling.setAdapter(top_selling_adapter);
                            top_selling_adapter.notifyDataSetChanged();
                        }
                    }
                } catch (JSONException e) {
                    e.printStackTrace();
                }
            }
        }, new Response.ErrorListener() {

            @Override
            public void onErrorResponse(VolleyError error) {
                VolleyLog.d(TAG, &quot;Error: &quot; + error.getMessage());
                if (error instanceof TimeoutError || error instanceof NoConnectionError) {
                    Toast.makeText(getActivity(), getResources().getString(R.string.connection_time_out), Toast.LENGTH_SHORT).show();
                }
            }
        });
        jsonObjReq.setRetryPolicy(new DefaultRetryPolicy(
                retry,
                DefaultRetryPolicy.DEFAULT_MAX_RETRIES,
                DefaultRetryPolicy.DEFAULT_BACKOFF_MULT));
        // Adding request to request queue
        // Adding request to request queue
        AppController.getInstance().addToRequestQueue(jsonObjReq, tag_json_obj);

    }

CustomVolleyJsonRequest.java

public class CustomVolleyJsonRequest extends Request&lt;JSONObject&gt; {

    private Response.Listener&lt;JSONObject&gt; listener;
    private Map&lt;String, String&gt; params;

    public CustomVolleyJsonRequest(String url, Map&lt;String, String&gt; params,
                                   Response.Listener&lt;JSONObject&gt; reponseListener, Response.ErrorListener errorListener) {
        super(Method.GET, url, errorListener);
        this.listener = reponseListener;
        this.params = params;
    }

    public CustomVolleyJsonRequest(int method, String url, Map&lt;String, String&gt; params,
                                   Response.Listener&lt;JSONObject&gt; reponseListener, Response.ErrorListener errorListener) {
        super(method, url, errorListener);
        this.listener = reponseListener;
        this.params = params;
    }

    protected Map&lt;String, String&gt; getParams()
            throws com.android.volley.AuthFailureError {
        return params;
    };

    @Override
    protected Response&lt;JSONObject&gt; parseNetworkResponse(NetworkResponse response) {
        try {
            String jsonString = new String(response.data,
                    HttpHeaderParser.parseCharset(response.headers));
            return Response.success(new JSONObject(jsonString),
                    HttpHeaderParser.parseCacheHeaders(response));
        } catch (UnsupportedEncodingException e) {
            return Response.error(new ParseError(e));
        } catch (JSONException je) {
            return Response.error(new ParseError(je));
        }
    }

    @Override
    protected void deliverResponse(JSONObject response) {
        // TODO Auto-generated method stub
        listener.onResponse(response);
    }
}

EDIT : Changed my POJO classes.

答案1

得分: 0

根据此JsonResponce,我认为您的模型存在问题。
将您的json响应粘贴到此处 https://jsoneditoronline.org,查看格式化后的json,然后将您的json粘贴到 http://www.jsonschema2pojo.org,以创建您的模型。在 http://www.jsonschema2pojo.org 中,您必须选择目标语言 Java,源类型为 Json,注释样式为 Gson 并进行预览。从那里获取您的模型,然后再次尝试。

英文:

I think there is a problem with your models according to this JsonResponce.
Paste your json response here https://jsoneditoronline.org and see your formatted json and paste your json http://www.jsonschema2pojo.org here for creating your models. In http://www.jsonschema2pojo.org you have to choose Target language Java,
Source type Json, Annotation Style Gson and preview. Get your models from there and try again.

答案2

得分: 0

&lt;!-- begin snippet: js hide: false console: true babel: false --&gt;

&lt;!-- language: lang-js --&gt;

    for (mList:mList){
       for (variant : Variants){
          variantList.add (variant)
       }
    }

&lt;!-- end snippet --&gt;
英文:

<!-- begin snippet: js hide: false console: true babel: false -->

<!-- language: lang-js -->

for (mList:mList){
   for (variant : Variants){
      variantList.add (variant)
   }
}

<!-- end snippet -->

答案3

得分: 0

首先创建一个字符串列表。

List<String> variantNameList = new ArrayList<String>();
 
for (mList : mList) {
    for (variant : Variants) {
        variantNameList.add(variant.variant_name);
    }
}

这是包含所有变体名称的列表。然后您需要一个适配器。

// 创建下拉列表适配器
ArrayAdapter<String> dataAdapter = new ArrayAdapter<String>(this, android.R.layout.simple_spinner_item, variantNameList);

// 下拉列表样式 - 使用单选按钮的列表视图
dataAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);

// 将数据适配器附加到下拉列表
spinner.setAdapter(dataAdapter);

就是这样。

英文:

Firstly create a String list.

List&lt;String&gt; variantNameList = new ArrayList&lt;String&gt;();



for (mList:mList){
   for (variant : Variants){
      variantNameList.add (variant. variant_name)
   }
} 

This is your list which icludes all variant names. Then you need an adapter

// Creating adapter for spinner

ArrayAdapter&lt;String&gt; dataAdapter = new ArrayAdapter&lt;String&gt;(this, android.R.layout.simple_spinner_item,  variantNameList);

// Drop down layout style - list view with radio

buttondataAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);

// attaching data adapter to spinner

spinner.setAdapter(dataAdapter);

Thats all

huangapple
  • 本文由 发表于 2020年4月5日 14:06:20
  • 转载请务必保留本文链接:https://java.coder-hub.com/61038677.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定