Control.StatelessBuilder
public
static
final
class
Control.StatelessBuilder
extends Object
| java.lang.Object | |
| ↳ | android.service.controls.Control.StatelessBuilder |
Builder class for Control.
This class facilitates the creation of Control with no state. Must be used to
provide controls for ControlsProviderService.createPublisherForAllAvailable and
ControlsProviderService.createPublisherForSuggested.
It provides the following defaults for non-optional parameters:
- Device type:
DeviceTypes.TYPE_UNKNOWN - Title:
"" - Subtitle:
""
Control as required by
ControlsProviderService.createPublisherForAllAvailable:
- Status:
Control.STATUS_UNKNOWN - Control template:
ControlTemplate.getNoTemplateObject - Status text:
"" - Auth Required:
true
Summary
Public constructors | |
|---|---|
StatelessBuilder(Control control)
Creates a |
|
StatelessBuilder(String controlId, PendingIntent appIntent)
|
|
Public methods | |
|---|---|
Control
|
build()
|
Control.StatelessBuilder
|
setAppIntent(PendingIntent appIntent)
|
Control.StatelessBuilder
|
setControlId(String controlId)
|
Control.StatelessBuilder
|
setCustomColor(ColorStateList customColor)
Optional color to be shown with the |
Control.StatelessBuilder
|
setCustomIcon(Icon customIcon)
Optional icon to be shown with the |
Control.StatelessBuilder
|
setDeviceType(int deviceType)
|
Control.StatelessBuilder
|
setStructure(CharSequence structure)
Optional top-level group to help define the |
Control.StatelessBuilder
|
setSubtitle(CharSequence subtitle)
|
Control.StatelessBuilder
|
setTitle(CharSequence title)
|
Control.StatelessBuilder
|
setZone(CharSequence zone)
Optional group name to help define the |
Inherited methods | |
|---|---|
Public constructors
StatelessBuilder
public StatelessBuilder (Control control)
Creates a StatelessBuilder using an existing Control as a base.
| Parameters | |
|---|---|
control |
Control: base for the builder.
This value cannot be null. |
StatelessBuilder
public StatelessBuilder (String controlId, PendingIntent appIntent)
| Parameters | |
|---|---|
controlId |
String: the identifier for the Control
This value cannot be null. |
appIntent |
PendingIntent: the pending intent linking to the device Activity.
This value cannot be null. |
Public methods
build
public Control build ()
| Returns | |
|---|---|
Control |
a valid Control
This value cannot be null. |
setAppIntent
public Control.StatelessBuilder setAppIntent (PendingIntent appIntent)
| Parameters | |
|---|---|
appIntent |
PendingIntent: a PendingIntent linking to an Activity for the Control
This value cannot be null. |
| Returns | |
|---|---|
Control.StatelessBuilder |
this
This value cannot be null. |
setControlId
public Control.StatelessBuilder setControlId (String controlId)
| Parameters | |
|---|---|
controlId |
String: the identifier for the Control
This value cannot be null. |
| Returns | |
|---|---|
Control.StatelessBuilder |
this
This value cannot be null. |
setCustomColor
public Control.StatelessBuilder setCustomColor (ColorStateList customColor)
Optional color to be shown with the Control. It is highly recommended
to let the system default the color unless the default is not suitable for the
application.
| Parameters | |
|---|---|
customColor |
ColorStateList: background color to use.
This value may be null. |
| Returns | |
|---|---|
Control.StatelessBuilder |
this
This value cannot be null. |
setCustomIcon
public Control.StatelessBuilder setCustomIcon (Icon customIcon)
Optional icon to be shown with the Control. It is highly recommended
to let the system default the icon unless the default icon is not suitable.
| Parameters | |
|---|---|
customIcon |
Icon: icon to show.
This value may be null. |
| Returns | |
|---|---|
Control.StatelessBuilder |
this
This value cannot be null. |
setDeviceType
public Control.StatelessBuilder setDeviceType (int deviceType)
| Returns | |
|---|---|
Control.StatelessBuilder |
this
This value cannot be null. |
setStructure
public Control.StatelessBuilder setStructure (CharSequence structure)
Optional top-level group to help define the Control's location, visible to the
user. If not present, the application name will be used as the top-level group. A
structure contains zones which contains controls.
| Parameters | |
|---|---|
structure |
CharSequence: name of the structure containing the control.
This value may be null. |
| Returns | |
|---|---|
Control.StatelessBuilder |
this
This value cannot be null. |
setSubtitle
public Control.StatelessBuilder setSubtitle (CharSequence subtitle)
| Parameters | |
|---|---|
subtitle |
CharSequence: additional information about the Control, to appear underneath
the title.
This value cannot be null. |
| Returns | |
|---|---|
Control.StatelessBuilder |
this
This value cannot be null. |
setTitle
public Control.StatelessBuilder setTitle (CharSequence title)
| Parameters | |
|---|---|
title |
CharSequence: the user facing name of the Control
This value cannot be null. |
| Returns | |
|---|---|
Control.StatelessBuilder |
this
This value cannot be null. |
setZone
public Control.StatelessBuilder setZone (CharSequence zone)
Optional group name to help define the Control's location within a structure,
visible to the user. A structure contains zones which contains controls.
| Parameters | |
|---|---|
zone |
CharSequence: name of the zone containing the control.
This value may be null. |
| Returns | |
|---|---|
Control.StatelessBuilder |
this
This value cannot be null. |