gpt4 book ai didi

android - 在通知中使用 Picasso 的最简单方法(图标)

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:48:09 24 4
gpt4 key购买 nike

我正在寻找一种使用 Picasso 加载通知图标(这是远程网页上的 URL)的简单方法。在以前版本的应用程序中,我正在处理此代码似乎有效:

        Bitmap speakerPic = null;
try {
speakerPic = new AsyncTask<Void, Void, Bitmap>() {
@Override
protected Bitmap doInBackground(Void... params) {
try {
return Picasso.with(c).load(session.getSpeaker().getPhotoUrl()).get();
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
}.execute().get(1500, TimeUnit.MILLISECONDS);
} catch (InterruptedException e) {
e.printStackTrace();
} catch (ExecutionException e) {
e.printStackTrace();
} catch (TimeoutException e) {
e.printStackTrace();
}

if (speakerPic != null) {
builder.setLargeIcon(speakerPic);
} else {
builder.setLargeIcon(BitmapFactory.decodeResource(c.getResources(), R.drawable.ic_launcher));
}

但现在我每次都会收到 TimeOutException(我回退到我的 res 文件夹中的默认图标)。我必须使用此 AsyncTask,因为 Picasso (/network) 可能不会在 UI 线程上发生。 (虽然我在这里阻塞了 UI 线程 1.5 秒......)。

我知道 Picasso 可以处理远程 View ,但我不想为我的通知使用自定义 View 。我也找不到获取 NoticifationIcon 的 RemoteView 的方法。

有没有一种方法可以简单地使用 Picasso 来设置我的通知图标?

最佳答案

我会自己回答这个问题,因为我找到了一个不错的方法,使用 Picasso 和 RemoteViews。经过测试并与 Picasso 2.5.2 一起使用:

// Default stuff; making and showing notification
final Context context = getApplicationContext();
final NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
final Notification notification = new NotificationCompat.Builder(context)
.setSmallIcon(R.mipmap.ic_launcher) // Needed for the notification to work/show!!
.setContentTitle("Title of notification")
.setContentText("This is the description of the notification")
// Uncomment if you want to load a big picture
//.setStyle(new NotificationCompat.BigPictureStyle())
.build();
final int notifId = 1337;
notificationManager.notify(notifId, notification);

// Get RemoteView and id's needed
final RemoteViews contentView = notification.contentView;
final int iconId = android.R.id.icon;

// Uncomment for BigPictureStyle, Requires API 16!
//final RemoteViews bigContentView = notification.bigContentView;
//final int bigIconId = getResources().getIdentifier("android:id/big_picture", null, null);

// Use Picasso with RemoteViews to load image into a notification
Picasso.with(getApplicationContext()).load("http://i.stack.imgur.com/CE5lz.png").into(contentView, iconId, notifId, notification);

// Uncomment for BigPictureStyle
//Picasso.with(getApplicationContext()).load("http://i.stack.imgur.com/CE5lz.png").into(bigContentView, iconId, notifId, notification);
//Picasso.with(getApplicationContext()).load("http://i.stack.imgur.com/CE5lz.png").into(bigContentView, bigIconId, notifId, notification);

关于android - 在通知中使用 Picasso 的最简单方法(图标),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26888247/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com