gpt4 book ai didi

android - 使用加载指示在我的 ListView 中设置适配器

转载 作者:行者123 更新时间:2023-11-30 03:51:43 26 4
gpt4 key购买 nike

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

1) CW endless adapter: 我在将它作为一个库项目时遇到了很多问题,当我尝试运行演示时,它总是向我显示 ! 符号红色。当我点击运行时,它说你的项目有错误,但甚至没有任何线索表明该错误发生在何处。甚至我也无法理解必须要做的事情,因为对于初学者来说这些事情有些困难。所以,我决定按照另一个来。

2) this , 我无法了解如何在我的场景中使用它,因为我在完成 doInBackground() 后获取整个数据。

有人可以通过相关代码 fragment 帮助我解决这个问题吗?非常感谢您的帮助。

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

最佳答案

使用您在此处发布的代码,似乎没有任何东西会花费大量时间。

我不认为制作无限列表(使用无限适配器或手动)适合您,因为显然您正在与之通信的网络服务器没有页面选项(例如,当在 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));
}

关于android - 使用加载指示在我的 ListView 中设置适配器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14055626/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com