感谢您阅读本文。 这是非常重要的事情,我现在试着在3个小时后发现错误。
我有一个包含Custom ListView项目的ListView!
图片 - > http://imageshack.us/photo/my-images/155/08pictureslistcopy.png/
要在Listview中显示正确的图片,我有一个ArrayList,其列表视图的右侧是picture_ID。
我还创建了一个名为AttachmentAdapter的类,它扩展了BaseAdpater。 在getView方法中,我从ArrayList中获取正确的picture_Id并显示该项目。
我已经从ArrayList获取picture_ID进行了调整,这项工作正确: - )
我的问题是在我的listview中有6个或更多的entrys后,getView方法开始给我错误的项目位置。所以我在列表中的错误位置显示错误的图片。
有人能告诉我为什么BaseAdapters getView方法会传递错误的位置吗?
这是我的BaseAdapter代码:
private class AttachmentAdapter extends BaseAdapter {
private LayoutInflater mInflater;
private ArrayList<Data_Attachment> mData = new ArrayList<Data_Attachment>();
public AttachmentAdapter(Context fragment) {
// super(fragment, textViewResourceId, items);
mInflater = LayoutInflater.from(fragment);
}
public void setData(ArrayList<Data_Attachment> data)
{
mData = data;
}
private Data_Attachment getAttachmentfromPosition(int pos)
{
return DataResources.getAttachment(position_list.get(pos));
}
@Override
public View getView(int position, View convertView, ViewGroup parent)
{
Data_Attachment data = getAttachmentfromPosition(position);
ViewHolder holder = null;
Log.e("TEST","getView " + position + ", Attachment: #" + data.getID() + " --> " + data.getBriefDescr());
if (convertView == null) {
convertView = mInflater.inflate(R.layout.listpictures_item, null);
holder = new ViewHolder();
holder.name= (TextView) convertView.findViewById(R.id.idPictureName);
holder.date= (TextView) convertView.findViewById(R.id.idPictureDate);
holder.uploader= (TextView) convertView.findViewById(R.id.idPictureUploader);
holder.icon = (ImageView) convertView.findViewById(R.id.idListPicture_Preview);
try{
Bitmap thumbnail = data.getThumbnail(getApplicationContext());
if(thumbnail != null)
{
holder.icon.setImageBitmap(thumbnail);
}
else
{
holder.icon.setImageDrawable(getApplicationContext().getResources().getDrawable(R.drawable.ic_notavailable));
}
}
catch(Exception e)
{
Log.e("TEST","PicturesIncident_Fragment.AttachmentData.getView, Error while showing picture: " + e.toString());
holder.icon.setImageDrawable(getApplicationContext().getResources().getDrawable(R.drawable.ic_notavailable));
}
String name = data.getBriefDescr();
if(name.length() == 0)
{
holder.name.setVisibility(View.GONE);
holder.uploader.setTextSize(14);
holder.uploader.setTypeface(Typeface.DEFAULT_BOLD);
}
else
{
//Kürzen nach 40 Strings
if(name .length() >= _Settings.MAX_ATTACHMENT_NAME_SIZE)
{
char[] buf = new char[_Settings.MAX_ATTACHMENT_NAME_SIZE];
name.getChars(0, _Settings.MAX_ATTACHMENT_NAME_SIZE-1, buf, 0);
name = String.valueOf(buf) +"...";
}
holder.name.setText(name);
}
//Set uploader and Date
Data_Worker data_worker = DataResources.getWorkerData_fromID(data.getuploaderID());
String uploader = data_worker.getName();
String date = data.getModified_str();
holder.uploader.setText(uploader);
//TODO change to view the date
// holder.date.setText(date);
holder.date.setText("pos: "+ position + " , #" + data.getID());
convertView.setTag(holder);
} else {
holder = (ViewHolder)convertView.getTag();
}
return convertView;
}
class ViewHolder {
TextView name;
TextView uploader;
TextView date;
ImageView icon;
}
@Override
public int getCount() {
return mData.size();
}
@Override
public Data_Attachment getItem(int position) {
return mData.get(position);
}
@Override
public long getItemId(int position) {
return position;
}
}
出于测试目的,我在下面的代码和屏幕截图中看到了这个项目在列表视图中的当前位置。
图片 - &gt; http://imageshack.us/photo/my-images/805/device20121010155051.png/
在这里你可以看到位置0不在列表的顶部。
此外,在iám向上和向下滚动后,位置会发生变化,我无法弄清楚位置变化背后的任何逻辑。
感谢您的帮助!
PS: 仅在设备上测试过(三星Galaxy S2 - Android 4.0.4)
答案 0 :(得分:1)
如果convertView为null,您似乎只更新行的内容。你拉出标签,但你从来没有做过任何事情。如果传入的视图为null,则创建一个新视图,设置持有者,然后结束if。您的所有内容分配都应该在if-else语句之后。
所以这样做:
ViewHolder holder = null;
if (convertView == null) {
// create new view
// setup holder
}
else {
holder = (ViewHolder) convertView.getTag();
}
try {
// set values on the holder
}
catch (Exception e) { }
return convertView;