在我的应用程序中,我有一个 listAdapter,我在其中从电话簿加载电话号码及其图像,如下所示
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;
public TextView textContNo;
public TextView text;
public QuickContactBadge photo;
public ViewHolder(View view)
{
rowView = view;
}
public TextView getTextView()
{
if(text ==null)
text = (TextView) rowView.findViewById(R.id.name);
return text;
}
public TextView getTextView1()
{
if(textContNo ==null)
textContNo = (TextView) rowView.findViewById(R.id.contactno);
return textContNo;
}
public TextView getTextView2()
{
if(textEmailId ==null)
textEmailId = (TextView) rowView.findViewById(R.id.emailId);
return textEmailId;
}
public QuickContactBadge getQuickContactBadge()
{
if(photo ==null)
photo = (QuickContactBadge) rowView.findViewById(R.id.quickContactBadge1);
return photo;
}
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View view = convertView;
ViewHolder holder;
if (view == null) {
LayoutInflater inflater = (LayoutInflater) (getContext()
.getSystemService(Context.LAYOUT_INFLATER_SERVICE));
view = inflater.inflate(renderer, null);
holder = new ViewHolder(view);
holder.text = (TextView) view.findViewById(R.id.name);
holder.textContNo = (TextView) view.findViewById(R.id.contactno);
holder.textEmailId = (TextView) view.findViewById(R.id.emailId);
holder.photo = (QuickContactBadge ) view.findViewById(R.id.quickContactBadge1);
view.setTag(holder);
} else {
holder =(ViewHolder) view.getTag();
}
Profile contact = listCont.get(position);
holder.text.setText(contact.getName());
QuickContactBadge photo = (QuickContactBadge ) view.findViewById(R.id.quickContactBadge1);
photo.setTag(contact.getMobileNo());
new LoadImage(photo).execute(contact.getMobileNo());
contact.getName();
contact.getId();
holder.textContNo.setText(contact.getNumber());
holder.textEmailId.setText(contact.getEmail());
return view;
}
我正在使用 asynctask 加载图像,如下所示
class LoadImage extends AsyncTask<String, Void, Bitmap>{
private QuickContactBadge qcb;
public LoadImage(QuickContactBadge qcb) {
this.qcb= qcb;
}
@Override
protected Bitmap doInBackground( final String... params) {
activity.runOnUiThread(new Runnable() {
public void run() {
new QuickContactHelper(activity, qcb, (String) params[0]).addThumbnail();
}
});
return null;
}
@Override
protected void onPostExecute(Bitmap result) {
}
每次滚动时,我都会在滚动列表视图时遇到问题,因为每个联系人的图像都在变化,滚动也不流畅。我不知道我在代码中做错了什么。感谢任何帮助。