我的老板说我必须使用 Android Query,我找到了这个网站:http ://code.google.com/p/android-query/wiki/ImageLoading 但我尝试了:
aq.id(R.id.image1).image("http://www.vikispot.com/z/images/vikispot/android-w.png");
在我的代码中,但我收到此错误:“aq 无法解析”我必须做什么才能初始化该 aq,我是否必须导入一些库?
这是我的列表视图适配器: public static class ListViewAdapterWall extends BaseAdapter { private LayoutInflater mInflater;
public ListViewAdapterWall(Context context) {
mInflater = LayoutInflater.from(context);
}
public int getCount() {
return ListviewContentWall.size();
}
public Object getItem(int position) {
return position;
}
public long getItemId(int position) {
return position;
}
public View getView(int position, View convertView, ViewGroup parent) {
ListContent holder;
if (convertView == null) {
convertView = mInflater.inflate(R.layout.listviewinflate, null);
holder = new ListContent();
holder.wallImage = (ImageView) convertView
.findViewById(R.id.wallImage1);
holder.wallButton = (ImageButton) convertView
.findViewById(R.id.wallButton1);
convertView.setTag(holder);
} else {
holder = (ListContent) convertView.getTag();
}
AQuery aq = new AQuery(convertView);
aq.id(R.id.wallImage1).image("http://www.vikispot.com/z/images/vikispot/android-w.png");
//holder.wallImage.setBackgroundDrawable(ListviewContentWall.get(position));
//holder.wallButton.setBackgroundDrawable(ListviewContentWall.get(position));
//holder.text2.setText(ListviewContent2.get(position));
return convertView;
}