1

下面是我的代码,我从 doinbackground() 中的 web 服务(远程服务器)获取数据。我想在 UI 上设置数据。一切正常。但是由于我要从服务器检索大量数据,所以进度条显示了很长时间。所以,我决定使用类似 CW 无尽适配器或根据this的东西。这几天一直让我很伤心。

1) CW 无限适配器:我在将它作为库项目包含时遇到了很多问题,当我尝试运行演示时,它总是向我显示红色的符号。当我单击运行时,它说您的项目有错误,但甚至没有一个线索该错误发生在哪里。即使我也无法理解必须做的事情,因为这些对于我作为初学者来说有些困难。所以,我决定按照其他人。

2)我无法了解如何在我的场景中使用它,因为我在完成doInBackground().

有人可以通过相关的代码片段帮助我吗?我会非常感谢你的帮助。

我在onCreate()方法中调用这个异步任务。

class LoadAllData extends AsyncTask<String, String, String> {
    /**
     * Before starting background thread Show Progress Dialog
     * */
    @Override
    protected void onPreExecute() {
        super.onPreExecute();
        pDialog = new ProgressDialog(GetData.this);
        pDialog.setMessage("Loading Data. Please wait...");
        pDialog.setIndeterminate(false);
        pDialog.setCancelable(false);
        pDialog.show();
    }

    /**
     * getting All Data from url
     * */
    protected String doInBackground(String... args) {
        // Building Parameters
        List<NameValuePair> params = new ArrayList<NameValuePair>();
        params.add(new BasicNameValuePair("datatobefetched", datadetails));
        // getting JSON string from URL
        JSONObject json = jParser.makeHttpRequest(url_all_ads, "POST", params);
        Log.d("All Products: ", json.toString());
        try {
            // Checking for SUCCESS TAG
            int check = json.getInt(CHECK);
            if (Check == 1) {
                // Data found
                // Getting Array of Data
                dataJsonArray = json.getJSONArray("totaldata");
                // looping through All data
                for (int i = 0; i < dataJsonArray.length(); i++) {
                    JSONObject jobj = dataJsonArray.getJSONObject(i);
                    // Storing each json item in variable
                    String id = jobj.getString("rowid");
                    String product = jobj.getString("data1");
                    String review = c.getString("data2");
                    String imagepath = c.getString("image_url");

                    // creating new HashMap
                    HashMap<String, String> map = new HashMap<String, String>();
                    // adding each child node to HashMap key => value
                    map.put("id", id);
                    map.put("product", product);
                    map.put("review", review);
                    map.put("imageurl", imagepath);     
                    // adding map to ArrayList
                    productsList.add(map); // ProductList is arrayList.
                }
            }
            else {
                // no data found
            }
        } 
        catch (JSONException e) {
            e.printStackTrace();
        }
        return null;
    }

    /**
     * After completing background task Dismissing the progress dialog
     * **/
    protected void onPostExecute(String file_url) {
        // dismiss the dialog after getting all products
        pDialog.dismiss();
        // updating UI from Background Thread
        runOnUiThread(new Runnable() {
            public void run() {
                // Updating parsed JSON data into ListView
                // Getting adapter by passing xml data ArrayList
                ListView list = (ListView)findViewById(R.id.list);   
                adapter = new CustomListAdapter(GetAllAds.this, productsList, passedcategory);        
                list.setAdapter(adapter);
            }
        });
    }
}
4

1 回答 1

1

使用您发布的代码似乎没有任何需要花费大量时间的东西。

我不相信制作一个无限列表(使用无限适配器或手动)适合您,因为显然您正在与之通信的网络服务器没有页面选项(例如,当您在特定项目的 URL 上时)每页和页码是这样?per_page=20&page_no=1的:),而那些类型的列表只对这样有意义。

就像一个简单的测试一样,将这些行放在代码之后:

long now = System.currentTimeMillis();
JSONObject json = jParser.makeHttpRequest(url_all_ads, "POST", params);
Log.d("Test", "Elapsed time is: " + Long.toString(System.currentTimeMillis() - now));

然后您可以检查您的 LogCat 发出 http 请求需要多长时间。

编辑:

建议替代 HashMap<> 因为我不认为它们是存储数据的非常有效的方法。

public class MyData(){
    JSONObject data;
    public MyData(JSONObject data){ this.data=data; }
    public String getId(){ return data.getString("rowid"); }
    // repeat for the other info you need, also override the toString to return the data.toString();
}

这样,所有 JSON 解析将在稍后的时间点以小批量完成,并且您的 for 循环将非常简单:

 for (int i = 0; i < dataJsonArray.length(); i++) {
     productList.add(new MyData(dataJsonArray.getJSONObject(i));
 }
于 2012-12-27T13:52:16.467 回答