Questions tagged [watch-face-api]

An API for building (interactive) watch faces for the Wear OS platform.

The watch face API is part of the Wearable Support Library. Watch faces can be rendered on a Canvas or using OpenGL ES 2.0. The official developer documentation can be found here and includes basic setup instructions and sample code.

104 questions
0
votes
2 answers

Broadcasting custom intent from one service to another

I have two services. I need to broadcast custom intent with data from one service. and in second service I need to receive it. I have tried following: In first service: public String ACTION_CHANGE_TIME_FORMAT =…
0
votes
2 answers

How to install and run wearable apps?

I have created a watch face for android wear. I followed this tutorial and generated signed apk. But there are two generated apks under my folder as shown in image: So, if I install mobile-release.apk then will it work for wear companion app? Can…
Krupal Shah
  • 8,949
  • 11
  • 57
  • 93
0
votes
1 answer

WatchFaces are not configuring

I have created watchface for android wear and my code is as follows: ComapnionConfigActivity (in mobile module): import android.support.v7.app.ActionBarActivity; import android.os.Bundle; import android.view.Menu; import…
xyz
  • 1,325
  • 5
  • 26
  • 50
0
votes
2 answers

Android wear module listener service not receiving data from mobile module

I am developing a sample watch face wherein a user would be able to select some color configuration on mobile app triggering changes on wear app watch face. Here is what I have in mobile app to send configuration: package…
Pratik
  • 23
  • 1
  • 5
0
votes
2 answers

How to develop watch face with wearable app in android?

I am new in Android wearable app development and recently I came to know that Watch Face API is also now available for Android. So I want to develop wearable app of my mobile app and also I want to develop watch face of that same app. Can anyone…
anddev
  • 3,144
  • 12
  • 39
  • 70
0
votes
1 answer

Where is getActivity() on Android Wear Face?

I am inside of AnalogWatchFaceService class, which is a sample Android Wear Face provided in Android Studio. I imported an API for doing something interesting and I need to pass getActivity() as a parameter for an object.…
0
votes
1 answer

Android watch face preview is not available on my LG G Watch R

I'm using Android Studio 1.0.2 and I've created a new watch face project by following instructions on Android developer site: https://developer.android.com/training/wearables/watch-faces/service.html I ended up with an application that can be run on…
d.aemon
  • 761
  • 1
  • 7
  • 20
0
votes
1 answer

Restarting Android service

I want to be able to restart my WatchFaceSerivce in so that I can trigger the onCreateEngine() method again and set an alternate wallpaper. However, the Android service I am trying to restart is putting up a real fight, it almost seems as though…
rmoh21
  • 1,405
  • 6
  • 19
  • 36
0
votes
1 answer

Can't find Sample Watch faces in AVD

I am trying to learn how to create Android Wear watch faces. The problem that I am having is I can't see any of the sample watch faces in the emulator. How do I get the samples into the emulator so I can see the changes I make? Thanks
Ryan
  • 1
  • 1
0
votes
1 answer

designing Watch-face background

I am new to designing android wear watch-faces. My question was if i only had to make the background image in GIMP or also the pointers and time markers? if so How can I best do this? Are there any tips I need to know? Kind regards, Emma
0
votes
2 answers

Android Wear Watch Face: onDraw() alternative in WatchFaceService?

as explained here (https://developer.android.com/training/wearables/watch-faces/service.html) to draw a watch face I have to use the method OnDraw, is that right? there are no alternatives? is this a joke? no layout from xml management? no dpi…
Alessandro Scarozza
  • 4,273
  • 6
  • 31
  • 39
-1
votes
1 answer

Handling change of a timezone in a watch face

If you take a look at Google's example of an analog watch face you can see that they are handling timezone change using BroadcastReceiver. In documentation, it says that onTimeTick will be triggered by timezone change. Would it be enough to just…
Vladimir Jovanović
  • 2,261
  • 2
  • 24
  • 43
-1
votes
1 answer

Why is my watchface not working?

The Watch face I am trying to code is not working. Here is the code: package mnx.watch; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.content.IntentFilter; import…
Catalin
  • 37
  • 5
-1
votes
1 answer

My WatchFace is lagging and heating watch too much (Android Wear)

I have created a watch face using CanvasWatchFaceService. I have created the watch face. And created the configuration app for phone. The problem is, my watch face is taking too much battery, and when watch go to sleep it wakes in 1-2 minutes. And…
Ayush
  • 1
  • 1
  • 2
1 2 3 4 5 6
7