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.
How can i implement notification like this?
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.
How can i implement notification like this?
首先,您可以Notification
在正在运行Honeycomb
或更高版本的设备上添加功能按钮。是的,一些前置Honeycomb
设备具有这种类型Notifications
,但只有设备制造商能够构建这种类型Notifications
(Dialer
或的示例Music Player
)。
要使用这样的通知,您可以使用 a customView
for your Notification
(看看RemoteViews
)。
一种更简单的方法(和推荐的方法)是使用NotificationCompat.Builder
和使用该addAction
方法,当单击该按钮时,它将向您添加一个按钮Notification
并执行PendingIntent
您指定的按钮。这也适用于预装Honeycomb
设备,这意味着在旧设备上不会显示该按钮。
编辑:您可以参考 Vogella 的这篇精彩教程:Android 通知。