I'm testing an update for a watchface but when changing the simulator for different watches Forerunner 920XT/Epix/Vivoactive I found an issue I'm using a clean install of SDK 1.2.4
With the following simple code to draw text in the coordinate 38,133 when using Epix/Vivoactive watches in the sim the text appears cut in the bottom of the screen, this do not happen in the 920XT, I have not watch to test, so I do not know what watch in the simulator will provide the correct output in a real watch.
dc.setColor(Gfx.COLOR_WHITE, Gfx.COLOR_TRANSPARENT);
dc.drawText(38, 133, Gfx.FONT_XTINY, Lang.format("$1$Km/$2$Mi", [kmSubString,milesSubString]), Gfx.TEXT_JUSTIFY_CENTER);
Sim ok with 920XT : http://www.jmsnetwork.org/Ok%2038-133%20coordinate%20920XT.PNG
Sim not ok with EPIX, same code: http://www.jmsnetwork.org/Epix.PNG
Which one is correct?
As I mention I have not real watch to test. I want to keep the code I have, I do not want to get the screen size and then calculate from there. As you know all these watches have the same screen size 205 x 148 so I assume should be the same for all three watches.
Your help is appreciated.
Thanks!