Android APIs
public static final class

Notification.Action.Builder

extends Object
java.lang.Object
   ↳ android.app.Notification.Action.Builder

Class Overview

Builder class for Notification.Action objects.

Summary

Public Constructors
Notification.Action.Builder(int icon, CharSequence title, PendingIntent intent)
Construct a new builder for Notification.Action object.
Notification.Action.Builder(Icon icon, CharSequence title, PendingIntent intent)
Construct a new builder for Notification.Action object.
Notification.Action.Builder(Notification.Action action)
Construct a new builder for Notification.Action object using the fields from an Notification.Action.
Public Methods
Notification.Action.Builder addExtras(Bundle extras)
Merge additional metadata into this builder.
Notification.Action.Builder addRemoteInput(RemoteInput remoteInput)
Add an input to be collected from the user when this action is sent.
Notification.Action build()
Combine all of the options that have been set and return a new Notification.Action object.
Notification.Action.Builder extend(Notification.Action.Extender extender)
Apply an extender to this action builder.
Bundle getExtras()
Get the metadata Bundle used by this Builder.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public Notification.Action.Builder (int icon, CharSequence title, PendingIntent intent)

Added in API level 20

Construct a new builder for Notification.Action object.

Parameters
icon icon to show for this action
title the title of the action
intent the PendingIntent to fire when users trigger this action

public Notification.Action.Builder (Icon icon, CharSequence title, PendingIntent intent)

Added in API level 23

Construct a new builder for Notification.Action object.

Parameters
icon icon to show for this action
title the title of the action
intent the PendingIntent to fire when users trigger this action

public Notification.Action.Builder (Notification.Action action)

Added in API level 20

Construct a new builder for Notification.Action object using the fields from an Notification.Action.

Parameters
action the action to read fields from.

Public Methods

public Notification.Action.Builder addExtras (Bundle extras)

Added in API level 20

Merge additional metadata into this builder.

Values within the Bundle will replace existing extras values in this Builder.

See Also

public Notification.Action.Builder addRemoteInput (RemoteInput remoteInput)

Added in API level 20

Add an input to be collected from the user when this action is sent. Response values can be retrieved from the fired intent by using the getResultsFromIntent(Intent) function.

Parameters
remoteInput a RemoteInput to add to the action
Returns
  • this object for method chaining

public Notification.Action build ()

Added in API level 20

Combine all of the options that have been set and return a new Notification.Action object.

Returns
  • the built action

public Notification.Action.Builder extend (Notification.Action.Extender extender)

Added in API level 20

Apply an extender to this action builder. Extenders may be used to add metadata or change options on this builder.

public Bundle getExtras ()

Added in API level 20

Get the metadata Bundle used by this Builder.

The returned Bundle is shared with this Builder.