0

こんにちは私は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
    }
}

問題は、私はリストを取得していますが、スクロールを開始すると画像が読み込まれ、画像が安定して正しい位置にあるだけです.. どこが間違っているのかわかりません。リストの読み込み後に画像を読み込む必要があります画像は正しい位置にある必要があります...どんな助けも大歓迎です

4

3 に答える 3

0

convertview!=null の場合にのみ AsynckTask を開始します。

これを修正するには、次のすべてのコードを if ステートメントの外側に配置します。

   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());

画像の読み込みには、次のライブラリを強くお勧めします。

Android-Universal-Image-Loader

これがお役に立てば幸いです。

于 2012-12-24T17:00:51.367 に答える
0

convertView == null の場合は何もしていないようです。if と else の両方で画像を割り当てる必要があります。

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(写真).execute(contact.getMobileNo());

于 2012-12-24T11:35:13.483 に答える