我有一些「聯繫」對象,每個都有一個與它們關聯的imageURL字符串。我所見過的將圖像放入ListView的方式都是將圖像手動放入「可繪製」文件夾並調用資源。手動輸入圖像會破壞此目的。我已經提供了我的getView方法,並且註釋掉的線是我感到困惑的。Android ImageView - 從URL加載圖像
public View getView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View row = inflater.inflate(R.layout.single_row, parent, false);
TextView name = (TextView) row.findViewById(R.id.topLine);
TextView phone = (TextView) row.findViewById(R.id.secondLine);
ImageView icon = (ImageView) row.findViewById(R.id.icon);
name.setText(contactArray.get(position).getName());
phone.setText((CharSequence) contactArray.get(position).getPhone().getWorkPhone());
//icon.setImage from contactArray.get(position).getImageURL(); ????
return row;
}
這種解決方案簡單明瞭。謝謝,這正是我正在尋找的。 – tryp
我是新手android設備。在哪裏把這條線放在mafnifest xml中? –