0
私はピカソの助けを借りてURLから画像をダウンロードしようとしています。私はこれを2日以上過ごす。私も失敗した非同期タスクを試しました。私はたくさん試しました。誰か助けてください。ピカソを使ってURLから画像をダウンロードするには
protected static void postNotification(Intent intentAction, Context context,String msg,String url){
NotificationManager mNotificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intentAction, Notification.DEFAULT_LIGHTS | Notification.FLAG_AUTO_CANCEL);
/* ImageDownloaderTask image = new ImageDownloaderTask();
image.execute(url);*/
Bitmap bitmapImage = retriveImage(url,context); //here only i want get that image.
Log.d("Bitmap", String.valueOf(bitmapImage));//Its print only null
Notification notification = new NotificationCompat.Builder(context)
.setSmallIcon(R.drawable.tapn)
.setContentTitle("Welcome!")
.setContentText(msg)
.setStyle(new NotificationCompat.BigPictureStyle().bigPicture(bitmapImage))
.setContentIntent(pendingIntent)
.setDefaults(Notification.DEFAULT_SOUND)
.setAutoCancel(true)
.getNotification();
mNotificationManager.notify(R.string.notification_number, notification);
}
private static Bitmap retriveImage(String url,Context c) {
CacheTarget cacheTarget = new CacheTarget();
Picasso.with(c)
.load(url)
.into(cacheTarget);
return cacheTarget.getCacheBitmap();
}
private static class CacheTarget implements Target {
private Bitmap cacheBitmap;
@Override
public void onBitmapLoaded(Bitmap bitmap, Picasso.LoadedFrom from) {
cacheBitmap = bitmap;
}
@Override
public void onBitmapFailed(Drawable errorDrawable) {
}
@Override
public void onPrepareLoad(Drawable placeHolderDrawable) {
}
public Bitmap getCacheBitmap() {
return cacheBitmap;
}
}
ありがとうございます!
[ピカソを使用してダウンロードして保存画像]の可能な重複(http://stackoverflow.com/questions/27729976/download-画像を使用して画像を保存する) –
Thats different questions .. – hikoo
その質問への回答は、あなたの質問への答えも提供しています。ListViewはその質問のアクセス権です。しかし、それは問題ではありません主な目的は画像をダウンロードすることです.. !! –