作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 Android 自定义 ListView 适配器,
我需要将一些图像流式传输/加载到我的自定义行布局/ImageView 中。
所以我尝试了:
myImageView.setImageBitmap(BitmapFactory.decodeFile(o.getIcon_url()));
喜欢下面的这段代码。
public View getView(int position, View convertView, ViewGroup parent) {
View v = convertView;
if (v == null) {
LayoutInflater vi = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
v = vi.inflate(R.layout.row_applications, null);
}
ApplicationsModel o = items.get(position);
if (o != null) {
ImageView tv_icon = (ImageView) v.findViewById(R.id.iv_icon);
if(row_icon !=null)
{
tv_icon.setImageBitmap(BitmapFactory.decodeFile(o.getIcon_url()));
}
}
return v;
}
但图像无法在我的自定义 ListView 中读取。
该代码适用于 TextView 的..
最佳答案
imageLoader.DisplayImage("URL_you_image", YOUimageIcon);
嗯,我正在使用这个来源 https://github.com/thest1/LazyList运行良好,异步加载图像;)
关于android - 如何将图像从 http 流式传输到 CursomAdapter(Android),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13823334/
我是一名优秀的程序员,十分优秀!