gpt4 book ai didi

php - ListView 未从具有重复行的数据库中正确填充

转载 作者:行者123 更新时间:2023-11-29 23:07:13 25 4
gpt4 key购买 nike

我正在使用AsyncTask通过JSON数组从mysql数据库填充Listview。问题是,除了最后一行中的 ListView 有重复的条目之外,我的所有项目都在显示。

我的File当我按升序导出它们时从数据库中导出它们

Check this explain better what is happening

我的代码:

public class JsonReadTask extends AsyncTask<String , Void, List<ProductList>> {
public JsonReadTask() {
super();
}

@Override
protected void onPreExecute() {
super.onPreExecute();
pDialog = new ProgressDialog(getActivity(), ProgressDialog.THEME_DEVICE_DEFAULT_DARK);
pDialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
pDialog.setMessage(getString(R.string.get_stocks));
pDialog.setIndeterminate(true);
pDialog.setCancelable(false);
pDialog.setInverseBackgroundForced(true);
pDialog.show();
}

@Override
protected List<ProductList> doInBackground(String... params) {
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(params[0]);
try {
HttpResponse response = httpclient.execute(httppost);
jsonResult = inputStreamToString(
response.getEntity().getContent()).toString();
customList = new ArrayList<>();

JSONObject jsonResponse = new JSONObject(jsonResult);
//JSONArray jsonMainNode = jsonResponse.optJSONArray("beverages");
JSONArray array = jsonResponse.getJSONArray("beverages");
for (int i = 0; i < array.length(); i++) {
JSONObject jsonChildNode = array.getJSONObject(i);
String name = jsonChildNode.getString("name");
String price = jsonChildNode.getString("price");
String image = jsonChildNode.getString("image");
customList.add(new ProductList(image, name, price));

}
return customList;
} catch (Exception e) {
e.printStackTrace();
getActivity().finish();
}
return null;
}

private StringBuilder inputStreamToString(InputStream is) {
String rLine = "";
StringBuilder answer = new StringBuilder();
BufferedReader rd = new BufferedReader(new InputStreamReader(is));
try {
while ((rLine = rd.readLine()) != null) {
answer.append(rLine);
}
} catch (Exception e) {
getActivity().finish();
}
return answer;
}

@Override
protected void onPostExecute(List<ProductList> customList) {
if(customList == null){
Log.d("ERORR", "No result to show.");
return;
}
ListDrawer(customList);
pDialog.dismiss();
}
}// end async task

public void accessWebService() {
JsonReadTask task = new JsonReadTask();
task.execute(new String[]{url});
}

public void ListDrawer(List<ProductList> customList) {
adapter = new ProductListAdapter(getActivity().getApplicationContext(), R.layout.list_item, customList);
adapter.notifyDataSetChanged();
lv.setAdapter(adapter);
}

我的适配器代码,尽管我认为无关紧要,因为它在咖啡和零食上运行良好:

public class ProductListAdapter extends ArrayAdapter<ProductList> {

public ProductListAdapter(Context context, int layoutId, List<ProductList> items) {
super(context, layoutId, items);
}

@Override
public View getView(int position, View convertView, ViewGroup parent) {
View arrayView = convertView;
ViewHolderItems holder;
ProductList currentPosition = null;

if(arrayView == null){
LayoutInflater vi;
vi = LayoutInflater.from(getContext());
arrayView = vi.inflate(R.layout.list_item, parent, false);
currentPosition = getItem(position);
holder = new ViewHolderItems();
holder.viewName = (TextView)arrayView.findViewById(R.id.product_name_coffee);
holder.viewPrice = (TextView)arrayView.findViewById(R.id.product_price_coffee);
holder.viewImage = (ImageView)arrayView.findViewById(R.id.product_image_coffee);
arrayView.setTag(holder);
}else{
holder = (ViewHolderItems) arrayView.getTag();
}
if(currentPosition != null){
holder.viewName.setText(currentPosition.getName());
holder.viewPrice.setText(currentPosition.getPrice());
Ion.with(holder.viewImage).placeholder(R.drawable.ic_launcher).error(R.drawable.ic_launcher).load(currentPosition.getImage());
}
return arrayView;
}

static class ViewHolderItems {
TextView viewName, viewPrice;
ImageView viewImage;
}


}

我的PHP代码:

<?php
try {
$handler = new PDO('mysql:host=localhost;dbname=database', 'root', 'password');
$handler->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
} catch (Exception $e) {
echo $e->getMessage();
die();
}

$query = $handler->query('SELECT * FROM beverages ORDER BY `name` ASC');
$records = array();
$records = $query->fetchAll(PDO::FETCH_ASSOC);
$json['beverages'] = $records;
echo json_encode($json);

知道为什么会发生这种情况吗???

最佳答案

看起来问题出在您的 getView() 方法中,特别是这段代码:

    if(currentPosition != null){
holder.viewName.setText(currentPosition.getName());
holder.viewPrice.setText(currentPosition.getPrice());
Ion.with(holder.viewImage).placeholder(R.drawable.ic_launcher).error(R.drawable.ic_launcher).load(currentPosition.getImage());
}

仅当 currentPosition 不为 null 时, View 的行才会更新 - 仅当 convertViewnull 时才会更新。如果该行的数据不会更新,它将只使用当前在convertView 中的数据。这就是为什么有些数据看起来是重复的。

要纠正此问题,只需删除包装 if 条件并保持其中的三行完好无损即可。

关于php - ListView 未从具有重复行的数据库中正确填充,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28242725/

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