0

私のRecyclerViewアダプターは次のように宣言されています

 adapterlist = new AdapterList(getActivity(),getData());

getData()関数は次のように定義されます。

public List<Information> getData(){
    final List<Information> data = new ArrayList<>();
    showpDialog();
    JsonObjectRequest jsonObjectRequest = new JsonObjectRequest
            (Request.Method.GET, urlfood, null, new Response.Listener<JSONObject>() {


                @Override
                public void onResponse(JSONObject jsonObject) {
                    for (int i = 0; i < 10; i++) {
                    try {


                        JSONArray items = jsonObject.getJSONObject("response").getJSONArray("groups").getJSONObject(0).getJSONArray("items");



                           if (jsonObject.getJSONObject("response").getJSONArray("groups").getJSONObject(0).getJSONArray("items").getJSONObject(i).getJSONObject("venue").has("location")) {
                               if(jsonObject.getJSONObject("response").getJSONArray("groups").getJSONObject(0).getJSONArray("items").getJSONObject(i).getJSONObject("venue").getJSONObject("location").has("address")){

                                JSONObject location = jsonObject.getJSONObject("response").getJSONArray("groups").getJSONObject(0).getJSONArray("items").getJSONObject(i).getJSONObject("venue").getJSONObject("location");
                                Address[i] = location.getString("address");}}

                            Name[i] = items.getJSONObject(i).getJSONObject("venue").getString("name");
                            String rtg=items.getJSONObject(i).getJSONObject("venue").getString("rating");
                            Rating[i]=Float.parseFloat(rtg);
                            Information current = new Information();
                            current.name = Name[i];

                            current.address = Address[i];
                            current.ratings = Rating[i];
                            data.add(current);


                    } catch (JSONException e) {
                        e.printStackTrace();
                        Toast.makeText(getActivity(), e.getMessage(), Toast.LENGTH_LONG).show();
                    }
                }
                    recyclerView.setAdapter(adapterlist);
                    hidepDialog();

                }
            }, new Response.ErrorListener() {

                @Override
                public void onErrorResponse(VolleyError error) {
                    Toast.makeText(getActivity(),
                            "error:"+error.getMessage(), Toast.LENGTH_SHORT).show();

                   hidepDialog();
                }
            }


            );
    AppController.getInstance().addToRequestQueue(jsonObjectRequest);


    return data;
}

これらはフラグメントを拡張するクラスで定義されています。生の応答または解析された応答をキャッシュするにはどうすればよいですか? 助けてください。

StackOverflow で既に多くの回答を確認しましたが、それらをフラグメント クラスに統合する方法を理解できません。

4

0 に答える 0