notification.builder代替notification的setLatestEventInfo()方法

来源:互联网 发布:友声tm x数据管理软件 编辑:程序博客网 时间:2024/06/05 23:08
Notification notification = new Notification.Builder(this)                .setContentTitle("This is title")                .setContentText("This is content")                .setSmallIcon(R.mipmap.ic_launcher)//                .setLargeIcon(aBitmap)                .build();        startForeground(1, notification);
0 0
原创粉丝点击