DroidFu 経由で取得している 65x65 ピクセルのソース画像のコレクションがあります。listView の行の内容に合わせて 80x80dip で表示したいと考えています。
ソース (サーバー) でサイズを変更したくない場合、droidfu WebImageView をスケーリングするための適切なアプローチは何でしょうか?
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View v = convertView;
if (v == null) {
v = mInflater.inflate(R.layout.my_feed_item_row, null);
}
MyFeedItem o = items.get(position);
if (o != null) {
TextView line1 = (TextView) v.findViewById(R.id.line1);
TextView line2 = (TextView) v.findViewById(R.id.line2);
TextView line3 = (TextView) v.findViewById(R.id.line3);
TextView line4 = (TextView) v.findViewById(R.id.line4);
if (line1 != null) {
line1.setText(o.getLine1()); }
if(line2 != null){
line2.setText(o.getLine2());
}
if(line3 != null){
line3.setText(o.getLine3());
}
if(line4 != null){
line4.setText(o.getLine4());
}
WebImageView rowThumbnail = (WebImageView);
v.findViewById(R.id.feed_row_thumbnail);
rowThumbnail.setImageUrl(o.getIconURLString());
rowThumbnail.loadImage();
}
return v;
}
}