Notification 的使用

本文介绍如何在Android中创建并显示通知,包括设置图标、滚动文本和时间戳等基本配置,以及如何通过PendingIntent关联Activity,实现用户点击通知后的跳转。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >


NotificationManager mNM = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);

// Set the icon, scrolling text and timestamp 设置可以在状态栏上显示的图标和提示信息
Notification notification = new Notification(R.drawable.stat_sample, text,
System.currentTimeMillis());

// The PendingIntent to launch our activity if the user selects this notification
//用户在状态栏点击相应的notify可以发送的Intent(连接到相应的activity)
PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
new Intent(this, ForegroundServiceController.class), 0);

// Set the info for the views that show in the notification panel.
//状态栏的notify展开后显示的文本信息
notification.setLatestEventInfo(this, getText(R.string.local_service_label),
text, contentIntent);

mNM.notify(R.string.foreground_service_started, notification);//使用R.string.foreground_service_started 是因为它是一个唯一ID

//取消notify

mNM.cancel(id);//id=R.string.foreground_service_started 之前定义的一个唯一ID

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值