0
我想加載一個包含一個圖像的URL到一個通知(使用picasso庫),並作爲回調我想加載另一個圖像,如果發生錯誤。我發現沒有回調代碼。如何使用回調在通知中從url中加載帶有畢加索的圖像?
Picasso.with(context).load(url).into(remoteViews, R.id.image, notificationID, notification);
我想加載一個包含一個圖像的URL到一個通知(使用picasso庫),並作爲回調我想加載另一個圖像,如果發生錯誤。我發現沒有回調代碼。如何使用回調在通知中從url中加載帶有畢加索的圖像?
Picasso.with(context).load(url).into(remoteViews, R.id.image, notificationID, notification);
如果代碼不會對UI Thread.You運行可以這樣做以下:
Bitmap bitmap = Picasso.with(context).load(url).get();
ImageView imageView = (ImageView) remoteViews.findById(R.id.image);
imageView.setImageBitmap(bitmap);
http://stackoverflow.com/questions/25744344/android-picasso-load-image-failed如何顯示錯誤訊息 – Misters
@Misters我知道如何在活動中做到這一點。這是不同的,因爲是在一個通知 –
我認爲你需要做一個目標和手動處理它。 –