使用加载指示在我的列表视图中设置适配器

时间:2012-12-27 13:40:08

标签: android listview loading

下面是我的代码,我从doinbackground()中的webservice(远程服务器)获取数据。我想在UI上设置数据。一切正常。但是,由于我要从服务器检索大量数据,因此进度条会显示很长时间。所以,我决定使用像CW endlesss adapter或者this这样的东西。几天来它一直让我悲伤。

1) CW无限适配器:我将其作为一个库项目包含了很多问题,当我尝试运行演示时,它总是显示符号红色。当我点击运行时,它表示你的项目有错误,但是甚至没有一条线索发生错误的位置。即使我也无法理解必须要做的事情,因为对于我来说,这对初学者来说有些困难。所以,我决定按照另一个方式跟进。

2)this我无法在我的方案中了解如何使用此功能,因为我在完成doInBackground()后获取整个数据

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

我在onCreate()方法中调用此asynctask。

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);
            }
        });
    }
}

1 个答案:

答案 0 :(得分:1)

你发布的代码似乎没有任何可能花费很多时间的东西。

我不相信制作一个无穷无尽的列表(使用无限适配器或手动)是你的情况,因为你正在与之通信的web服务器显然没有页面选项(例如,当在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&lt;&gt;因为我不相信它们是非常有效的存储数据的方式。

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));
 }