0

I'm checking out the new Android Wear 2.0 developer preview. Now I know that the complication API is going to be public, but one thing I've noticed is that on the Google default watchface: Elements Analog, there is also a styles menu under settings that lets you change the watchface colors.

Does anyone know if this is going to be (or maybe already is) a part of the public Android Wear API?

Tim Kranen
  • 4,202
  • 4
  • 26
  • 49
  • Try reading about the [Providing Configuration Activities](https://developer.android.com/training/wearables/watch-faces/configuration.html) in Creating Watch Faces document. As far as I know, you will be setting up configuration parameters to let users customize how the watch face looks and behaves. It can be done using the Companion or the Wearable(less complicated because complex menus are hard to navigate on smaller screens. Also check their [sample](https://developer.android.com/samples/WatchFace/index.html) demonstrates handheld and wearable configuration activities. Hope it helps! – Mr.Rebot Aug 16 '16 at 16:30

1 Answers1

1

There is no such API to set the style color for watch face, you should create one by yourself in the watch face setting.

You can read Providing Configuration Activities to provide a setting activity for watch face.

mengpq
  • 56
  • 6