2

In samsung galaxy tab 2 when phone app goes to background, we can interact with phone app from notification. it has all the buttons and information that we need. enter image description here

How can i implement notification like this?

4

1 回答 1

3

首先,您可以Notification在正在运行Honeycomb或更高版本的设备上添加功能按钮。是的,一些前置Honeycomb设备具有这种类型Notifications,但只有设备制造商能够构建这种类型NotificationsDialer或的示例Music Player)。

要使用这样的通知,您可以使用 a customViewfor your Notification(看看RemoteViews)。

一种更简单的方法(和推荐的方法)是使用NotificationCompat.Builder和使用该addAction方法,当单击该按钮时,它将向您添加一个按钮Notification并执行PendingIntent您指定的按钮。这也适用于预装Honeycomb设备,这意味着在旧设备上不会显示该按钮。

编辑:您可以参考 Vogella 的这篇精彩教程:Android 通知

于 2013-03-28T16:01:00.520 回答