getNotification().extras.getString(Notification.EXTRA_TITLE)
时间: 2024-04-26 14:24:41 浏览: 242
.Notification范例
5星 · 资源好评率100%
这是一个获取 Android 系统通知中标题文本的方法。`getNotification()`方法返回当前通知的 Notification 对象,`extras`属性返回一个 Bundle 对象,可以获取各种通知信息,`Notification.EXTRA_TITLE`表示通知标题的键值。所以 `getNotification().extras.getString(Notification.EXTRA_TITLE)` 就是获取当前通知标题文本的代码。
阅读全文