page.title=Watch Face Complications meta.keywords="wear-preview" page.tags="wear-preview" page.image=/wear/preview/images/complications-main-image.png @jd:body
A complication is any feature in a watch face that displays more than hours and minutes. For example, a battery indicator is a complication. The Complications API is for both watch faces and data provider apps.
Watch faces can display extra information without needing code for getting the underlying data. Data providers can supply data (such as battery level, weather, or step-count data) to any watch face using the API.
You can review the Javadoc for complications by downloading the Android Wear 2.0 Preview Reference. Also see the API additions for complications and the behavior changes for Wear 2.0.
Apps that provide data to watch faces for complications are called "complication data providers." These apps are not responsible for controlling how their data is rendered on the watch face. This allows a watch face to integrate the data naturally with the watch face design. The consuming watch faces are responsible for drawing the complications.
Watch faces can receive complication data of various types (e.g. small text data or icon data) and then display it.
As indicated in the diagram below, Android Wear mediates the flow of data from providers to watch faces.
For creating or modifying watch faces, see Adding complications to a watch face.
For writing apps that provide data to watch faces, see Exposing data to complications.
Watch face developers can receive complication data and enable users to select providers for that data. Additionally, Android Wear provides a user interface for data source selection.
To start receiving complication data, a watch face calls
setActiveComplications
, in the
WatchFaceService.Engine
class, with a list of watch face
complication IDs. A watch face creates these IDs to uniquely identify
slots on the watch face where complications can appear, and passes them
to the createProviderChooserIntent
method
to allow the user to decide
which complication should go in which slot.
Complication data is delivered via the
onComplicationDataUpdate
(of
WatchFaceService.Engine
) callback.
The watch face may render the data as desired as long as the expected fields are represented; the required fields should always be included and the data should be represented in some way. Depending on the type, some of the optional fields should also be included (see the Notes column in the table below).
We provide design guidelines for our style, as a suggestion for standard complications, but developers can use their own styles or incorporate the data into the watch face in different ways.
Android Wear provides a user interface (via an Activity) that enables
users to choose providers for a particular complication. Watch faces can
call the createProviderChooserIntent
method to obtain an
intent that can be used to show the chooser interface.
This intent must be used with startActivityForResult
. When a
watch face calls createProviderChooserIntent
, the watch face
supplies a watch face complication ID and a list of supported types. The
types should be listed in order of preference, usually with types
offering more information, such as ranged value, given higher preference.
When the user selects a data provider, the configuration is saved automatically; nothing more is required from the watch face.
Providers can specify an action that occurs if the user taps on a
complication, so it should be possible for most complications to be
tappable. This action will be specified as a PendingIntent
included in the ComplicationData
object. The watch face is
responsible for detecting taps on complications, and should fire the
pending intent when a tap occurs.
It may be infeasible to make some complications tappable (e.g., in the case of a complication that fills the entire background of the watch face), but it is expected that watch faces accept taps on complications where possible.
A watch face must have the following permission to receive complication data and open the provider chooser:
com.google.android.wearable.permission.RECEIVE_COMPLICATION_DATA
A watch face that was not granted the above permission will be unable to start the provider chooser.
To make it easier to request the permission and start the chooser, the
ComplicationHelperActivity
class is available in the
wearable support library. This class should be used instead of
ProviderChooserIntent
to start the chooser in almost all
cases.
To use ComplicationHelperActivity
, add it to the watch face
in the
manifest file:
<activity android:name="android.support.wearable.complications.ComplicationHelperActivity"/>
To start the provider chooser, call the
ComplicationHelperActivity.createProviderChooserHelperIntent
method, to obtain an intent.
The new intent can be used with either startActivity
or
startActivityForResult
to launch the chooser.
Here is an example of using the new intent with
startActivityForResult
:
startActivityForResult( ComplicationHelperActivity.createProviderChooserHelperIntent( getActivity(), watchFace, complicationId, ComplicationData.TYPE_LARGE_IMAGE), PROVIDER_CHOOSER_REQUEST_CODE);
When the helper activity is started, the helper activity checks if the permission was granted. If the permission was not granted, the helper activity makes a runtime permission request. If the permission request is accepted (or is unneeded), the provider chooser is shown.
If startActivityForResult
was used with the intent, the
result delivered back to the calling Activity will have a result code of
RESULT_OK
if a provider was successfully set, or a result
code of RESULT_CANCELLED
if no provider was set.
In the case where a provider was set,
ComplicationProviderInfo
for the chosen provider will be
included in the data intent of the result, as an extra with the key
ProviderChooserIntent#EXTRA_PROVIDER_INFO
.
In general, watch faces need the above permission in order to receive complication data, but there are some exceptions. Specifically, a watch face can only receive data from a provider if one of the following is true:
If none of the above is true, then when ComplicationData
normally would be sent by a provider to a watch face, the system instead
sends data of the type TYPE_NO_PERMISSION
. This type
includes an icon (an exclamation mark) and short text ("--") to allow it
to be rendered as if it were of the short text type or icon type, for
convenience.
When a watch face receives data of TYPE_NO_PERMISSION
, the
watch face should render this appropriately, so the user can see that
action is needed for the complication to work. If possible, a tap on a
complication in this state should launch a permission request. This can
be done using
ComplicationHelperActivity.createPermissionRequestHelperIntent
,
if the helper activity was added to the watch face app.
If a user accepts the permission request created by the helper activity,
updates are requested for all the active complications on the watch face
automatically, allowing the TYPE_NO_PERMISSION
data to be
replaced by real data.
Some system providers are considered "safe", because they only supply information that the watch face already could obtain itself.
These providers are listed in the new SystemProviders
class
in the wearable support library. Whether a system provider is safe is
stated in the Javadoc (in the Android Wear 2.0 Preview Reference). Also
see System providers for a list.
Providers can specify certain watch faces as "safe" to receive their data. This is intended to be used only when the watch face will attempt to use the provider as a default (see below), and the provider trusts the watch face app.
To declare watch faces as safe, the provider adds metadata with a key of
android.support.wearable.complications.SAFE_WATCH_FACES
. The
metadata value should be a comma-separated list (whitespace is ignored).
Entries in the list can be component names (of
WatchFaceServices
, given as if
ComponentName.flattenToString()
had been called), or they
can be package names (of apps, in which case every watch face within a
specified app is considered safe).
For example:
<meta-data android:name="android.support.wearable.complications.SAFE_WATCH_FACES" android:value=" com.app.watchface/com.app.watchface.MyWatchFaceService, com.anotherapp.anotherwatchface/com.something.WatchFaceService, com.something.text "/>
Watch faces can specify default providers that are used until a user selects a provider.
Set default providers using the
setDefaultComplicationProvider
method in
WatchFaceService.Engine
. This method may be called at any
time, but it does nothing if the user already chose a provider for the
given complication.
For most providers, the RECEIVE_COMPLICATION_DATA
permission
must be granted to a watch face before data can flow to it. However, some
system providers are considered "safe", and do not require the watch face
to have the permission for data to be sent (see Safe Providers and System providers). These providers may be
preferable to use as defaults, as they can supply data immediately.
Alternatively, if a watch face has a partnership with a certain provider and wishes to use it as a default, it can request that the provider list it as a safe watch face (see Provider-specified safe watch faces).
The system includes providers that can be used as defaults. These are
listed in the SystemProviders
class in the wearable support
library.
The following table has details about providers that are considered safe:
Method name in the SystemProviders class | Safety | Can be the default | Notes |
---|---|---|---|
dateProvider()
|
Yes | Yes | The standard system date provider. Tapping opens the standard Agenda app. |
currentTimeProvider()
|
Yes | Yes | The standard system "time and date" provider. No tap action. |
batteryProvider()
|
Yes | Yes | The standard system battery provider. No tap action. |
stepCountProvider()
|
Yes | Yes |
Shows a daily total of steps, as reported by
readDailyTotal .
|
unreadCountProvider()
|
Yes | Yes | Shows the number of unread notifications in the stream. |
worldClockProvider()
|
Yes | Yes | Will default to London or New York. Can be tapped to change the time zone. |
appsProvider()
|
Yes | Yes | Will show an "apps" icon at first, which can be tapped to choose an app. |
nextEventProvider()
|
No | Yes (but not a safe provider) | The standard system "next event" provider. Tapping opens the standard Agenda app. |
A complication data provider is a service that extends
ComplicationProviderService
. To respond to update requests
from the system, your data provider must implement the
onComplicationUpdate
method of the
ComplicationProviderService
class. This method will be
called when the system wants data from your provider - this could be when
a complication using your provider becomes active, or when a fixed amount
of time has passed. A ComplicationManager
object is passed
as a parameter to the onComplicationUpdate
method, and can
be used to send data back to the system.
Note: When you provide data as a complication data provider, the watch face receives the raw values you send so it can draw them on the watch face.
In your app's manifest, declare the service and add an intent filter for the following:
android.support.wearable.complications.ACTION_COMPLICATION_UPDATE_REQUEST
The service's manifest entry should also include an
android:icon
attribute. The provided icon should be a
single-color white icon. Vector drawables are recommended for the icons.
An icon should represent the provider and will be shown in the provider
chooser.
Include metadata to specify the supported types, update period, and
configuration action, if required; for details, download the Android Wear
2.0 Preview Reference and see the keys listed for the
ComplicationProviderService
class (in the Javadoc; see
API Additions).
Additionally, a permission for provider services ensures that only the Android Wear system can bind to provider services. Only the Android Wear system can have this permission.
Provider services should add the following to their service declarations in the manifest:
android:permission="com.google.android.wearable.permission.BIND_COMPLICATION_PROVIDER"
Your provider can specify an update period using the following metadata key in the manifest:
android.support.wearable.complications.UPDATE_PERIOD_SECONDS
This should be set to as long a time as possible, as updating too frequently may impact battery life. Note that update requests are not guaranteed to be sent with this frequency. The system does apply a minimum update period, and in particular, updates requests may come less often when the device is in ambient mode or is not being worn.
You can alternatively use a "push style" to send updates, rather than
requesting updates on a fixed schedule. To do so, you can set the update
period to 0 so scheduled update requests do not occur (or set it to a
non-zero value) and use a ProviderUpdateRequester
to trigger
calls to onComplicationUpdate
as required.
If required, a provider can include a configuration activity that is shown to the user when the user chooses a data provider. To include the configuration activity, include a metadata item in the provider service declaration in the manifest with a key of the following:
android.support.wearable.complications.PROVIDER_CONFIG_ACTION
The value can be an action of your choice.
Then create the configuration activity with an intent filter for that
action. The configuration activity must reside in the same package as the
provider. The configuration activity must return RESULT_OK
or
RESULT_CANCELED
, to tell the system whether the provider
should be set.
If a data provider needs a specific permission to access a user's data, then standard code for runtime permissions is needed. A configuration activity may be used as an opportunity to request any permissions required by the provider.
For details, download the Android Wear 2.0 Preview Reference (see
API Additions), containing the Javadoc, and
see the following in the ComplicationProviderService
class:
METADATA_KEY_PROVIDER_CONFIG_ACTION
Complication types determine the kinds of data shown in a complication.
For example, the SHORT_TEXT
type is available when the key
data is a short string. In the example of the SHORT_TEXT
type, optional data are an icon and a short title.
Data providers use these complication types differently from the way watch face providers use these types:
RANGED_VALUE
and SHORT_TEXT
types, whereas a
"next meeting" provider might support the SHORT_TEXT
and
LONG_TEXT
types. The data provider also chooses which
optional fields of those types to include.
SHORT_TEXT
, ICON
and RANGED_VALUE
types, whereas a gauge on the watch face might support only the
RANGED_VALUE
type.
A ComplicationData
object will always have a single
complication type. Each complication type has required and optional
fields. Generally, a required field represents the primary piece of data;
most types take their name from the required field.
A given type may include different sets of fields. For example,
SHORT_TEXT
may be just a single piece of text, or a title
and text, or an icon and text. A complication that supports a given type
must be able to display all the expected variants. However, some optional
fields do not need to be displayed (see the Notes column of the
table below). For example, the Short title field of the
RANGED_VALUE
type is not required so that, for example,
gauges can be shown without including text.
The following shows examples of complication types:
The following table describes the types and fields of the
ComplicationData
object.
If a watch face requests a field that is invalid for a complication type,
a default value for the field is returned.
For example, if a watch face tries to access a Long text
field in a SHORT_TEXT
type, the default value for the
Long text
field is returned.
Type | Required fields | Optional fields | Notes |
---|---|---|---|
SHORT_TEXT | Short text |
Icon Short title |
Exactly one of Icon/Short title is expected to be shown if either or both are provided. |
ICON | Icon | Used when text is not needed.The icon is expected to be single-color, and may be tinted by the watch face. | |
RANGED_VALUE |
Value Min value Max value |
Icon Short text Short title |
Optional fields are not guaranteed to be displayed. |
LONG_TEXT | Long text |
Long title Icon Small image |
Title is expected to be shown if provided. |
SMALL_IMAGE | Small image | A small image has one of two styles: photo style or icon style. Photo style means it should fill the space and can be cropped; icon style means it should not be cropped and may be padded. | |
LARGE_IMAGE | Large image | This image is expected to be large enough to fill the watch face. |
In addition, the types in the table below are for empty data and may be sent for any complication slot. These types have no fields and do not need to be included in a list of supported types. These types enable watch faces to differentiate among the following three cases:
Providers should not send TYPE_EMPTY
in response to
update requests. Providers should send TYPE_NO_DATA
instead.
Details on the complication types for "empty" data are in the following table:
Complication type | Description |
---|---|
TYPE_NOT_CONFIGURED
|
Sent by the system when a complication is activated but the user has
not selected a provider, and no default was set.
Cannot be sent by providers. |
TYPE_EMPTY
|
Sent by the system when a complication is activated and the user has
chosen "empty" instead of a provider, or when the watch face has
chosen no provider, and this type, as the default.
Cannot be sent by providers. |
TYPE_NO_DATA
|
Sent by the system when a complication (that has a provider) is
activated, to clear the complication before actual data is received
from the provider.
Should be sent by providers if they have no actual data to send. |
The fields of a ComplicationData
object have different
functions. For example, a text field contains the primary data while a
title field is descriptive; a step count complication might have a text
field value of "2,543" with a title field value of "steps."
The following table contains descriptions of the fields in a
ComplicationData
object. The fields may or may not be
populated, depending on the complication type.
Field | Description |
---|---|
Short text | Primary text field for small complications. Should not exceed 7 characters. |
Icon | A single-color image representing the data or the source of the data. Must be tintable. Vector drawables are recommended for this field. |
Short title | Descriptive field for small complications. Should not exceed 7 characters. May only be meaningful in combination with Short text. |
Long text | Primary data field for large, text-based complications. |
Long title | Descriptive field for large, text-based complications. May only be meaningful in combination with Long text. |
Value | A numerical (float) representation of the data. Expected to be depicted relative to the bounds the Min value and Max value fields (but not required to be between those bounds). |
Min value | The lower bound for the range within which Value should be depicted. Only meaningful in combination with Value and Max value. |
Max value | The upper bound for the range within which value should be depicted. Only meaningful in combination with Value and Min value. |
Small image | A small image to represent the data or the source of the data. May be full color. Not expected to fill the entire watch face. |
Large image | An image with sufficient resolution to fill the watch face. May be full color. |
Some complications need to display a value that relates to the current time. Examples include the current date, the time until the next meeting, or the time in another time zone.
Providers of such data should not need to update a complication every second/minute to keep those values up to date. Instead, they can specify the values as relative to the current date or time.
Providers can use the builders in the ComplicationText
class
to create these time-dependent values.
The Complications API includes new classes in the wearable support library. For more information, download the Android Wear 2.0 Preview Reference.
ComplicationData
ComplicationHelperActivity
com.google.android.wearable.permission.RECEIVE_COMPLICATION_DATA
ProviderChooserIntent
to start the chooser in almost all cases
ComplicationManager
ComplicationProviderService
Service
and includes callback methods to
respond to the complication system
ComplicationText
ComplicationData
object
ProviderChooserIntent
ComplicationHelperActivity
instead
ProviderInfoRetriever
ProviderUpdateRequester
onComplicationUpdated
in their provider service, to
enable the push of updates
SystemProviders
Additionally, the WatchFaceService.Engine
class contains the
following new methods:
setActiveComplications
ComplicationManager
object what complication slots are
available and what types are supported
onComplicationDataUpdate
ComplicationManager
object to send
complication data to the watch face