I've set up resource folder's for multiple devices such as 390x390, 280x280, etc.
I am trying to customize the code for heart rate, date and other texts but I do not see any change whatsoever.
In the View.mc folder, the following code works perfectly to draw the hr:
dc.setColor(Application.getApp().getProperty("ForegroundColor"),Gfc.COLOR_TRANSPARENT);
dc.drawText(0,0,Gfx.FONT_SMALL, hr,Gfx.TEXT_JUSTIFY_LEFT);
In order to customize the draw on other devices, I've tested the string listed below in the respective layout folder and the resources folder similar to the "PluralsightTribute" SDK. Does anyone know what is the best way to display these in multiple devices?
The below codes are the ones I've tried using in the layout or resource file, but I have seen no change when I select the appropriate device... What am I missing?
Any help would be appreciated!
<layout id="WatchFace">
<label id="ShowHeartRateLabel" x="0" y="0" font="Graphics.FONT_SMALL" justification="Graphics.TEXT_JUSTIFY_LEFT" />
<label id="HeartrateDisplay" text="000" x="0" y="0" font="@Fonts.smallFont" justification="Gfx.TEXT_JUSTIFY_CENTER" color="Gfx.COLOR_WHITE" />
</layout>