我想从URL加载图像,但是由于链接没有扩展名而无法正常工作 这可以解决吗??? 网址示例:http://d1s5a4e3za7rni.cloudfront.net/Custom/Content/Products/10/13/1013450_purificador-de-agua-electrolux-pc41x-prata_s4_636822411415208179
设备上的示例:enter image description here
答案 0 :(得分:1)
您可以使用Glide。
如果您的Web server
在该image
上投放URL
,并且带有有效的图像MIME type
,则Glide
会处理它。 Glide不关心扩展名,它加载服务器返回的字节流,它需要一个valid URL
来提供有效的图像MIME type
。
示例:
// For a simple view:
@Override public void onCreate(Bundle savedInstanceState) {
...
ImageView yourImageView = (ImageView) findViewById(R.id.image_view_id);
Glide.with(this).load("image_url").into(yourImageView);
}
要在项目中使用Glide,请参见download-setup。