首页 > 其他 > 详细

Notification中使用Glide

时间:2016-12-30 13:35:06      阅读:280      评论:0      收藏:0      [点我收藏+]

之前一直在琢磨Glide自定义使用中的一些经验;今天简单的分享下Notification中使用Glide去加载icon方法;

     我们都知道使用android通知时,一般可能会有如下代码:

NotificationCompat.Builder mBuilder =  
    new NotificationCompat.Builder(context)
        .setSmallIcon(R.mipmap.future_studio_launcher)
        .setContentTitle("Title")
        .setContentText("Text")
        .setContent(cView)//这里是你定义布局产生的对象
        .setPriority( NotificationCompat.PRIORITY_MIN);

final Notification notification = mBuilder.build();
NotificationManager mNotificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);  
mNotificationManager.notify(xxxxx, notification);//Notification的使用是需要系统服务支持的,而且还需要你提供一个id=xxxxx

     到了Glide设置notification时又变成了极其简单的操作,代码如下:

NotificationTarget notificationTarget = new NotificationTarget(context,
    cView,//通知展示的xml对象实例
    R.id.ImageView_notification_icon,//布局中ImageView的id
    notification,//通知的对象实例
    xxxxx);//通知的对象实例对应的id

     之后直接调用into插入NotificationTarget对象即可:

Glide  
    .with( context)
    .load( eatFoodyImages[3] )
    .asBitmap()
    .into( notificationTarget );

 

Notification中使用Glide

原文:http://www.cnblogs.com/zzq-include/p/6236405.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!