我正在尝试使用Picasso从URL加载ImageView - 但是imageView似乎永远不会填充图像,我不确定为什么。
P.S。
调试时 - 'boxart'的值每次都是有效的图片网址 - 所以我很难过。
...
Bundle extras = getIntent().getExtras();
if (extras != null) {
String boxart = extras.getString("boxart");
Picasso.with(this).load(boxart).into(imageItem);
另外 - 我没有收到任何错误 - 它只是不加载图像。
答案 0 :(得分:0)
尝试安装错误处理程序,看看是否会调用它(在Picasso.Builder
上设置此全局侦听器:
public class MyClass implements Picasso.Listener {
@Override
public void onImageLoadFailed(Picasso picasso, Uri uri, Exception exception) {
// Display the exception
}
}
答案 1 :(得分:0)
确保您拥有正确的权限:
db.test.update({ca:{$exists:false}}, {$set : {"ca":new Date}}, {upsert:false, multi:true})
离。
<uses-permission android:name="android.permission.INTERNET" />
另外,请确保您的设备已连接到网络。