1
A
回答
1
public Onadapter(Context context,String[] id,String[] label,String[] title,String[] image,String[] hrs,String[] posted_date)
{
this.context=context;
this.id = id;
this.label = label;
this.title = title;
this.image = image;
this.hrs = hrs;
this.posted_date=posted_date;
}
private class ViewHolder{
ImageView img;
TextView id;
TextView label;
TextView title;
TextView hrs;
TextView posted_date;
}
public View getView(int position, View convertView, ViewGroup parent) {
ViewHolder holder = null;
LayoutInflater mInflater = (LayoutInflater) context.getSystemService(Activity.LAYOUT_INFLATER_SERVICE);
if (convertView == null) {
convertView = mInflater.inflate(R.layout.whatslist, null);
holder = new ViewHolder();
holder.id=(TextView) convertView.findViewById(R.id.whats_id);
holder.img = (ImageView) convertView.findViewById(R.id.thumb1);
holder.label= (TextView) convertView.findViewById(R.id.label);
holder.title = (TextView) convertView.findViewById(R.id.artist_e_desc);
holder.hrs = (TextView) convertView.findViewById(R.id.hrs);
holder.posted_date = (TextView) convertView.findViewById(R.id.date);
convertView.setTag(holder);
}
else {
holder = (ViewHolder) convertView.getTag();
}
holder.id.setText(id[position]);
holder.label.setText(label[position]);
holder.title.setText(title[position]);
holder.hrs.setText(hrs[position]);
holder.posted_date.setText(posted_date[position]);
imgaq = new AQuery(convertView);
imgaq.id(holder.img).image(image[position], true, true, 0, 0, null, AQuery.FADE_IN_NETWORK, 1.0f);
return convertView;
}
@Override
public int getCount() {
// TODO Auto-generated method stub
return image.length;
}
@Override
public long getItemId(int position) {
// TODO Auto-generated method stub
return position;
}
@Override
public Object getItem(int position) {
// TODO Auto-generated method stub
return null;
}
}
相關問題
- 1. 加載圖片列表視圖
- 2. Android AQuery圖像加載
- 3. 添加圖片列表視圖中
- 4. 通過代理加載AQuery圖像
- 5. 使用通用圖像加載器在列表視圖中加載圖像
- 6. 在列表視圖中從json url加載圖片
- 7. Android在列表視圖中加載更多圖片
- 8. 圖片加載從java服務器到android列表視圖
- 9. 無法加載圖像列表視圖
- 10. 在列表視圖中加載圖像
- 11. 在列表視圖中加載圖像
- 12. 加載圖像JSON列表視圖
- 13. Xamarin從列表視圖加載列表視圖
- 14. 使用片段列表視圖
- 15. 使用片段的列表視圖
- 16. C# - 將圖像加載到圖像列表和列表視圖
- 17. 加載視圖當片段加載
- 18. 使用asyncTask在android中的列表視圖中加載圖像
- 19. 使用Lazyloading加載圖像到列表視圖獲取錯誤
- 20. 使用aframe加載圖片
- 21. 使用jQuery加載圖片?
- 22. 使用Aquery將圖像下載到Google地圖標記
- 23. 加載圖片到列表框
- 24. 片段和列表視圖
- 25. 片段,JSON,列表視圖
- 26. 列表視圖上的聯繫人照片ID - 延遲加載
- 27. 圖片庫使用表格視圖
- 28. 使用'presentModalViewController'加載視圖
- 29. 表視圖加載子視圖?
- 30. 優化加載列表視圖