API 23上的notification实现(读书笔记)

1.坑

在第一行代码提到的notification的实现提到

直接用Notification的构造方法实例化一个notification对象>
Notification notification = new Notification(icon,tickerText,when);
然后,坑来了…>
调用Notification的setLastsetEvenInfo()方法设置一个布局什么的

再然后就在IDE里敲入setLastsetEvenInfo()

根本就没有这个方法!!(/‵Д′)/~ ╧╧,(我用的是Android studio,API level 23,真机调试的系统就是android 6.0~)

2.折腾

网上查资料后发现这个方法早在API 11后就抛弃了 (╬☉д⊙)
Android Studio提示deprecated(大概就是被抛弃了的意思

After API level 11 应该用Notification.Builder来创建Notification

Intent intent = new Intent(MainActivity.this, PendingIntentActicity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(MainActivity.this, 0, intent, PendingIntent.FLAG_CANCEL_CURRENT);
                NotificationManager manager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
Notification notification = new Notification.Builder(MainActivity.this)
                        .setContentTitle("This is title")
                        .setContentText("This is content text")
                        .setWhen(System.currentTimeMillis())
                        .setTicker("This is ticker")
                        .setSmallIcon(R.mipmap.ic_launcher)
                        .setPriority(Notification.PRIORITY_MAX)
                        .setContentIntent(pendingIntent)
                        .setAutoCancel(true)
                        .build();

build()方法返回一个Notification对象

finally

manager.notify(1, notification);
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值