こんにちは私はSOを検索し、最善を尽くしましたが、機能させることができませんでした..私は画像付きの電話連絡先をロードしているリストビューを持っています. 以下は私のコードです
public ProfileAdapter(Activity activity, int textViewResourceId, List<Profile> listCont,int renderer, String profileType) {
super(activity, textViewResourceId, listCont);
this.renderer = renderer;
this.listCont = listCont;
this.activity = activity;
this.profileType = profileType;
}
public class ViewHolder {
View rowView;
public TextView textEmailId= null;
public TextView textContNo= null;
public TextView text= null;
public ImageView photo= null;
public int position;
}
@Override
public View getView( int position, View convertView, ViewGroup parent) {
//View view = convertView;
ViewHolder holder;
if (convertView == null) {
LayoutInflater inflater = (LayoutInflater) getContext()
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
convertView = inflater.inflate(renderer, null);
holder = new ViewHolder(convertView);
holder.text = (TextView) convertView.findViewById(R.id.name);
holder.textContNo = (TextView) convertView.findViewById(R.id.contactno);
holder.textEmailId = (TextView) convertView.findViewById(R.id.emailId);
holder.photo = (ImageView ) convertView.findViewById(R.id.quickContactBadge1);
convertView.setTag(holder);
}
else {
holder =(ViewHolder) convertView.getTag();
holder.position = position;
Profile contact = listCont.get(position);
holder.text.setText(contact.getName());
ImageView photo = (ImageView ) convertView.findViewById(R.id.quickContactBadge1);
photo.setTag(contact.getMobileNo());
photo.setImageResource(R.drawable.stub_image);
new LoadImage(photo).execute(contact.getMobileNo());
}
return convertView;
}
class LoadImage extends AsyncTask<String, Void, Bitmap>{
// private final WeakReference<ImageView> viewReference;
private ImageView img;
public LoadImage(ImageView img) {
//viewReference = new WeakReference<ImageView>( view );
this.img=img;
}
@Override
protected Bitmap doInBackground(final String... params) {
new QuickContactHelper(activity, img, (String) params[0]).addThumbnail();
return null;
}
@Override
protected void onPostExecute(Bitmap bitmap) {
// nothing
}
}
問題は、私はリストを取得していますが、スクロールを開始すると画像が読み込まれ、画像が安定して正しい位置にあるだけです.. どこが間違っているのかわかりません。リストの読み込み後に画像を読み込む必要があります画像は正しい位置にある必要があります...どんな助けも大歓迎です