我有一个可以从互联网上加载多张图片的应用。我正在使用RecyclerView和CardView以列表形式显示我的内容。请帮助我。我是Android的新手。
答案 0 :(得分:1)
为什么你不想使用毕加索? ImageLoader是您的选择吗?
您需要做的就是:
ImageLoader imageLoader = ImageLoader.getInstance(); // Get singleton instance
// Load image, decode it to Bitmap and display Bitmap in ImageView (or any other view
// which implements ImageAware interface)
imageLoader.displayImage(imageUri, imageView);