使用图像路径使用通用图像加载器加载图像

时间:2015-08-14 22:38:10

标签: android imageview universal-image-loader

我正在尝试使用UniversalImageLoader加载图像。我试过这种方式:

init

但什么都没发生。是否可以使用UniversalImageLoader加载图像,并将图像的路径作为字符串?

2 个答案:

答案 0 :(得分:1)

首先,您必须在路径中的任何空格字符之前添加反斜杠。

String path = "/storage/emulated/0/BlackHole/Black\ Hole/1gatopan0000.png"

然后,Picasso是一个很棒的库,可以让您轻松加载图像。我个人认为它比UIL更漂亮。要将图像加载到ImageView中,您只需:

Picasso.with(context).load("/your/path/here").into(yourImageView);

答案 1 :(得分:0)

Try this:

String path = "/storage/emulated/0/BlackHole/Black\ Hole/1gatopan0000.png"