我正在使用UIL从外部网址加载图片,它在AVD中运行良好。
imageLoader.init(ImageLoaderConfiguration.createDefault(mContext));
imageLoader.displayImage("http://proyectocupones.hol.es/fotos/discount.jpg", holder.image);
我检查UIL lib是否在“Java Build Path”中,以及我的AndroidManyfest中的Internet权限:
<uses-permission android:name="android.permission.INTERNET" />
知道错误可能在哪里?
答案 0 :(得分:1)
答案 1 :(得分:0)
我尝试使用以下方法为播放器设置图像并且它有效。试试这种方式。
ImageLoader.getInstance().displayImage("Image URL","thumbImageView");
答案 2 :(得分:0)
您可以尝试在PC上连接时调试手机,并检查logcat以查看输出和问题。
也许你没有通过电话启用互联网(?)
答案 3 :(得分:0)
使用 Glide 代替UIL库。