如何在使用服务器的json feed时快速启动我的Android应用程序

时间:2017-09-08 05:36:44

标签: android json magento android-asynctask

我已经在电子商务网站(magento 2)上生成了一个应用程序,而我正在尝试启动我的应用程序,因为我服务器中的许多产品都有任何可能的方法来加快我对Async任务的使用,因此处理速度非常慢使用JSON提要..请让我以任何可能的方式

我的AsyncTask编码之一:

private class GetProduct extends AsyncTask<Void, Void, Void> {

    @Override
    protected void onPreExecute() {
        super.onPreExecute();
        // Showing progress dialog
        dialog_pro = new ProgressDialog(Healthy_Cat.this);
        dialog_pro.setMessage("Please wait...");
        dialog_pro.setCancelable(false);
        dialog_pro.show();

    }

    @Override
    protected Void doInBackground(Void... arg0) {
        HttpHandler sh = new HttpHandler();
        String jsonStr = sh.makeServiceCall(url);



        if (jsonStr != null) {
            try {


                JSONArray items = new JSONArray(jsonStr);
                for (int i = 0; i < items.length(); i++) {
                    JSONObject c = items.getJSONObject(i);
                    pro_name = c.getString("name");
                    String price = c.getString("price");
                    JSONArray array = c.getJSONArray("custom_attributes");
                    for (int k = 0; k < array.length(); k++) {
                        JSONObject jb = array.getJSONObject(k);
                        String attr = jb.getString("attribute_code");

                        if (attr.equalsIgnoreCase("special_price")) {

                            splprice = jb.getString("value");

                        }
                    }


                    String sku = c.getString("sku");

                    JSONArray media = c.getJSONArray("media_gallery_entries");

                    for(int k = 0; k < media.length(); k++) {
                        JSONObject jb = media.getJSONObject(k);

                        String imageURL =  BaseURL_Helper.MediaBase +jb.getString("file");

                        media_image = imageURL;

                        // tmp hash map for single contact
                        Beanclass dataSet = new Beanclass();
                        dataSet.setTitle(pro_name);
                        dataSet.setImage(imageURL);
                        dataSet.setPrice(price);
                        dataSet.setSPLPrice(splprice);
                        dataSet.setSku(sku);
                        list.add(dataSet);

                        BeanclassList data = new BeanclassList();
                        data.setTitle(pro_name);
                        data.setImage(imageURL);
                        data.setSku(sku);
                        data.setSPLPrice(splprice);
                        data.setPrice(price);
                        listbean.add(data);

                    }

                }
            }catch (final JSONException e) {
                runOnUiThread(new Runnable() {
                    @Override
                    public void run() {
                        no_list.setVisibility(View.VISIBLE);

                    }
                });

            }
        } else {

            runOnUiThread(new Runnable() {
                @Override
                public void run() {
                    Toast.makeText(getApplicationContext(),
                            "May be Network error!!",
                            Toast.LENGTH_LONG)
                            .show();
                }
            });

        }

        return null;
    }

    @Override
    protected void onPostExecute(Void result) {
        super.onPostExecute(result);
        // Dismiss the progress dialog
        /**
         * Updating parsed JSON data into ListView
         * */
        if (dialog_pro.isShowing())
            dialog_pro.dismiss();

        mAdapter = new GridviewAdapter(Healthy_Cat.this,list);
        gridlist.setAdapter(mAdapter);

        Listadapter = new ListviewAdapter(Healthy_Cat.this,listbean);
        listview_pro.setAdapter(Listadapter);

    }

}

提前感谢你..

3 个答案:

答案 0 :(得分:0)

与Retrofit相比,Asyntask的性能速度太低了。

因此,对于电子商务应用,您必须使用Retrofit。

答案 1 :(得分:0)

您需要在代码中更新一些内容

  1. API调用lib:我使用Retrofit来快速调用api&amp;简单易用。支持标题&amp;响应缓存。
  2. JSON解析:您正在手动解析JSON,这是一个非常耗时的过程。我正在使用Google的JSON解析Lib Gson。非常快。
  3. 分页:如果您在服务器上有大量数据,那么尝试获取少量数据。例如,对于&#34;项目列表API&#34;尝试一次从服务器获取10-15项数据,而不是一次获取所有项目。

答案 2 :(得分:0)

您可以做一些事情。对于初学者,在更新视图之前,您不必解析整个json 但实际上你自己说的是问题,即你有太多的数据。这不仅是编程问题,也是用户体验问题,太多数据令人困惑,特别是在移动设备上。 我建议将您的数据分解为类别等。应用启动时,只下载要显示的类别列表。用户选择类别后,即可下载该类别的数据 下载数据时,请以块的形式进行,以便立即开始显示。
您可以实施许多类似的想法,以获得更好的用户体验。