我有ListView的问题。问题是当我点击列表中的任何项目时,所有元素都在改变它们的位置。我已经创建了扩展BaseAdapter的ListViewAdapter,并且在getView中我从公共静态ArrayList获取数据,这些项由AsyncTask和ProgressBar填充(在onCreate()结束时调用)。 ListView只接受一次新适配器。我既没有在适配器上做notifyDataSetChanged()方法也没有任何类型的invalidate()。项目的ArrayList不会从代码中的任何位置更改。感谢调试器我知道在完成onItemClick()方法(它只有三行:从ListView中声明新的Intent,put extras和startActivity())之后,但是在新Activity的onCreate()的第一行之前,项目正在重新定位。我不知道在哪里搜索该问题的原因。有什么建议?什么样的源代码会对此有所帮助?
这是getView():
public View getView(int position, View convertView, ViewGroup parent) {
ViewHolder holder;
if (convertView == null) {
convertView = mInflater.inflate(R.layout.trophies_listitem, null);
holder = new ViewHolder();
holder.text = (TextView) convertView.findViewById(R.id.TrophiesListItemName);
holder.text2 = (TextView) convertView.findViewById(R.id.TrophiesListItemSpecies);
holder.text3 = (TextView) convertView.findViewById(R.id.TrophiesListItemWeigth);
holder.text4 = (TextView) convertView.findViewById(R.id.TrophiesListItemJagdrevier);
holder.photo = (ImageView) convertView.findViewById(R.id.TrophiesListItemPhoto);
holder.label1 = (TextView) convertView.findViewById(R.id.TrophiesListLabel1);
convertView.setTag(holder);
}
else {
holder = (ViewHolder) convertView.getTag();
return convertView;
}
DownloadedTrophy t = (DownloadedTrophy) trophies.get(position);
holder.text.setText(t.getTrophy_title());
if(t.getTrophy_species()!=null && t.getTrophy_species().length()>0 && Integer.parseInt(t.getTrophy_species())>0)
holder.text2.setText(Main.mSpecies.getItemByKeyValue("id", String.valueOf(Integer.valueOf(t.getTrophy_species()) - 1)).get("name"));
holder.text3.setText(t.getTrophy_weight());
holder.text4.setText(t.getTrophy_place());
byte [] picture = t.getPictureSmall();
if(picture!=null){
Bitmap bm = BitmapFactory.decodeByteArray(picture, 0, picture.length);
holder.photo.setImageBitmap(bm);
} else {
Bitmap bm;
bm = BitmapFactory.decodeResource(res,R.drawable.trophy_none);
holder.photo.setImageBitmap(bm);
}
holder.label1.setText("Ort:");
return convertView;
}
答案 0 :(得分:1)
你正在重复使用View的不同元素(一件好事),但你的ViewHolder对象的引用仍然会保存对前面元素对象的引用。重新找到它们会更好(也很有效)。