我想将包含图像的网址加载到通知中(使用picasso库),并且如果发生错误,我想加载另一个图像。我找到了没有回调的代码。
Picasso.with(context).load(url).into(remoteViews, R.id.image, notificationID, notification);
答案 0 :(得分:1)
如果代码不能在UI Thread上运行。你可以这样做:
Bitmap bitmap = Picasso.with(context).load(url).get();
ImageView imageView = (ImageView) remoteViews.findById(R.id.image);
imageView.setImageBitmap(bitmap);