接收通知文字信息

时间:2017-02-05 19:05:40

标签: java android

如果我收到来自Twitter的通知,那么我想从中获取所有文本。如果它是由用户发推文" ABCD" (@abcd)和推文包含" Hello"所以"做这些事情"。

那我该怎么做呢?有广播接收器这样的通知接收器吗?

1 个答案:

答案 0 :(得分:0)

您可以使用NotificationListenerService接收通知。然后,根据您应用的要求,解析通知的内容并执行所需的操作。

NotificationListenerService的

Here is the documentation。设置看起来相当简单。您需要在AndroidManifest.xml中添加一个节点,然后创建一个扩展NotificationListenerService的类。

Here is an example on Github of someone using the NotificationListenerService.