UserStyleSetting.DoubleRangeUserStyleSetting.Builder


class UserStyleSetting.DoubleRangeUserStyleSetting.Builder


A Builder for DoubleRangeUserStyleSetting.

Summary

Public constructors

Builder(
    id: UserStyleSetting.Id,
    minimumValue: Double,
    maximumValue: Double,
    defaultValue: Double,
    affectsWatchFaceLayers: Collection<WatchFaceLayer>,
    resources: Resources,
    displayNameResourceId: @StringRes Int,
    descriptionResourceId: @StringRes Int
)

Constructs a builder for DoubleRangeUserStyleSetting.

Public functions

UserStyleSetting.DoubleRangeUserStyleSetting

Constructs the DoubleRangeUserStyleSetting.

UserStyleSetting.DoubleRangeUserStyleSetting.Builder
setIcon(icon: Icon)

Sets an Icon for use in the companion userStyle selection UI.

UserStyleSetting.DoubleRangeUserStyleSetting.Builder
setIcon(iconProvider: () -> Icon?)

Sets a provider of an Icon for use in the companion userStyle selection UI.

UserStyleSetting.DoubleRangeUserStyleSetting.Builder

Sets optional data for an on watch face editor, this will not be sent to the companion and its contents may be used in preference to other fields by an on watch face editor.

Public constructors

Builder

Builder(
    id: UserStyleSetting.Id,
    minimumValue: Double,
    maximumValue: Double,
    defaultValue: Double,
    affectsWatchFaceLayers: Collection<WatchFaceLayer>,
    resources: Resources,
    displayNameResourceId: @StringRes Int,
    descriptionResourceId: @StringRes Int
)

Constructs a builder for DoubleRangeUserStyleSetting.

Parameters
id: UserStyleSetting.Id

Id for the BooleanUserStyleSetting, must be unique.

minimumValue: Double

Minimum value (inclusive).

maximumValue: Double

Maximum value (inclusive).

defaultValue: Double

The default value for the constructed DoubleRangeUserStyleSetting.

affectsWatchFaceLayers: Collection<WatchFaceLayer>

Used by the style configuration UI. Describes which watch face rendering layers this style affects.

resources: Resources

The Resources from which displayNameResourceId and descriptionResourceId are loaded.

displayNameResourceId: @StringRes Int

String resource id for a human readable name for the DoubleRangeUserStyleSetting, used in the userStyle selection UI.

descriptionResourceId: @StringRes Int

String resource id for a human readable description string displayed under the displayName in the userStyle selection UI.

Public functions

setIcon

Added in 1.3.0-alpha05
fun setIcon(icon: Icon): UserStyleSetting.DoubleRangeUserStyleSetting.Builder

Sets an Icon for use in the companion userStyle selection UI. This gets sent to the companion over bluetooth and should be small (ideally a few kb in size).

setIcon

Added in 1.3.0-alpha05
fun setIcon(iconProvider: () -> Icon?): UserStyleSetting.DoubleRangeUserStyleSetting.Builder

Sets a provider of an Icon for use in the companion userStyle selection UI. This gets lazily evaluated and is sent to the companion over bluetooth and should be small (ideally a few kb in size). Note this is not guaranteed to be called on the calling thread. Note it will be called shortly after watch face initialization completes.

setWatchFaceEditorData

Added in 1.3.0-alpha05
fun setWatchFaceEditorData(
    watchFaceEditorData: UserStyleSetting.WatchFaceEditorData
): UserStyleSetting.DoubleRangeUserStyleSetting.Builder

Sets optional data for an on watch face editor, this will not be sent to the companion and its contents may be used in preference to other fields by an on watch face editor.