Questions tagged [watchface]

81 questions
0
votes
0 answers

How to define complications for multiple watch faces in one app?

I have two watch faces (two services) in one app. Everthing works fine, I have different styles for each watch face. My problem is the complications. If I change the complications in watch face No.1, it works. If I change the complications in watch…
0
votes
1 answer

Watchface companion app not appearing

Problem: Im trying to add a companion app to my watchface, I thought it would be simple as it wasn't to difficult to add the configuration for android wear. But i cant seem to get the gear to show in the android wear app so i can open the companion…
Scott Chambers
  • 581
  • 6
  • 22
0
votes
2 answers

Tizen accessing cumulative calories

I'm trying to creare a watch face that show the cumulative number of calories burned from the midnight. I can't find a simple solution for doing this. There are several watch face (Eg IWD_LCD) that already do this but I don't know how. Maybe this…
user3691431
  • 775
  • 6
  • 7
0
votes
2 answers

Packaging and installing Android Wear Watchface

I've read several other questions regarding this same topic however I am still at my wit's end trying to figure out how to get my Watchface to appear on my Android Wear device, let alone publish it to the Play Store. The project has a mobile app…
abbanoob
  • 216
  • 1
  • 16
0
votes
0 answers

XAMARIN - Android watchface taking long time to install to the watch

I made a simple watch face using visual studio 2015. The solution has 2 projects (mobile and wear). I'm deploying as "release" signing everything fine, it installs in the phone and in the watch, but the problem is that it's taking 30 minutes to…
0
votes
0 answers

Android Wear Data Syncing Issues

I have created a watch face that contains a config screen on the phone and a simplified config screen on the wearable. This is the layout of my project: MobileModule WearModule UtilModule (contains util class that retrieves data from Google…
0
votes
1 answer

Changing Watchface in android Wear from companion app?

We can change watchface of wear watch from google official wear app. How can I implement same functionality in my companion app? What should be the approach?
ptim ktim
  • 65
  • 1
  • 1
  • 6
0
votes
1 answer

Can any one explain this logic of watch face in analog watch sample android

Hi I was going through Sample of analog watch.In onDraw method I came across this logic @Override public void onDraw(Canvas canvas, Rect bounds) { mTime.setToNow(); // Draw the background. if (isInAmbientMode()) { …
Lokesh Tiwari
  • 10,496
  • 3
  • 36
  • 45
0
votes
2 answers

android wear watch: use setPeekOpacityMode() for opacity, use setCardPeekMode for height

The android developer page gives the following information on the variable option for peek cards: When this peek mode is selected, peek cards will be as tall as needed, while maintaining enough space at the top to draw the system time and status…
kjl
  • 311
  • 3
  • 13
0
votes
1 answer

Android watchface: how to know if a peek card is shown and to what height?

How does one call the information that a card is being displayed and to what height it is being displayed. I'm working on a balanced ternary clock, and I'd like to resize the face depending on cards. Edit: I found a solution. // detect the height of…
kjl
  • 311
  • 3
  • 13
0
votes
2 answers

android.util.GregorianCalendar: will c.add(Calendar.DAY_OF_MONTH, 1) rollback or forward?

If the Calendar is on the last day of the month (say 31st of July) , will c.add(Calendar.DAY_OF_MONTH, 1); set c to the start of the same month, July, or will it advance c to the next month, August?
kjl
  • 311
  • 3
  • 13
0
votes
1 answer

Android Watch: 'cannot resolve symbol' error on GregorianCalendar?

I'm trying to set up a watch using the calendar class. The line: Calendar mCalendar = new GregorianCalendar(TimeZone.getDefault()) gives me an error: cannot resolve symbol GregorianCalendar error What am I doing wrong?
kjl
  • 311
  • 3
  • 13
0
votes
1 answer

Android Wear: What is resources.getDimension(R.dimen.digital_x_offset)

Where does the value associated with this "x_offset" come from or what does it represent? And is it an absolute or relative to width value? Edit: the default value is 15dp which is about a third of the text size. (info form Clement Amarnath's link:…
kjl
  • 311
  • 3
  • 13
0
votes
1 answer

Block android watch batery ambient mode

There is an ambient state that my watch goes into when it is on the charger that dims slightly but keeps the normal color depth. And another ambient mode that the watch enters on battery with reduced color depth. Some of the colors on my ambient…
kjl
  • 311
  • 3
  • 13
0
votes
0 answers

Android Watch: make the ambient card scheme the default

Is there a way to set cards to use their ambient color scheme in interactive mode?
kjl
  • 311
  • 3
  • 13