This commit is contained in:
2023-09-29 17:10:28 +02:00
parent 10f31ffb96
commit 2eaae26106
6 changed files with 129 additions and 124 deletions
+16 -8
View File
@@ -23,10 +23,6 @@
<!-- time/timer -->
<label id="timerHM" x="132" y="258" color="Graphics.COLOR_WHITE" justification="Graphics.TEXT_JUSTIFY_RIGHT" font="Graphics.FONT_MEDIUM" />
<label id="timerS" x="134" y="278" color="Graphics.COLOR_LT_GRAY" justification="Graphics.TEXT_JUSTIFY_LEFT" font="Graphics.FONT_XTINY" />
<label id="timeS1" x="212" y="330" color="0x0088FF" justification="Graphics.TEXT_JUSTIFY_CENTER" font="Graphics.FONT_LARGE" />
<label id="timeS2" x="214" y="330" color="0x0088FF" justification="Graphics.TEXT_JUSTIFY_CENTER" font="Graphics.FONT_LARGE" />
<label id="timeS3" x="213" y="328" color="0x0088FF" justification="Graphics.TEXT_JUSTIFY_CENTER" font="Graphics.FONT_LARGE" />
<label id="timeS4" x="213" y="332" color="0x0088FF" justification="Graphics.TEXT_JUSTIFY_CENTER" font="Graphics.FONT_LARGE" />
<label id="time" x="213" y="330" color="0x000000" justification="Graphics.TEXT_JUSTIFY_CENTER" font="Graphics.FONT_LARGE" />
<!-- distance/pace/avg pace -->
@@ -54,12 +50,24 @@
<!-- Layouts used for the for the four quadrants. -->
<layout id="TopLayout">
<drawable class="Background" />
<label id="label" x="14" y="75" color="0x888888" justification="Graphics.TEXT_JUSTIFY_LEFT" font="Graphics.FONT_TINY" />
<label id="value" x="14" y="42" color="Graphics.COLOR_WHITE" justification="Graphics.TEXT_JUSTIFY_LEFT" font="Graphics.FONT_LARGE" />
<drawable class="HeartRate" id="HeartRate">
<param name="y">64</param>
</drawable>
<!-- hr labels -->
<label id="hr" x="center" y="6" color="Graphics.COLOR_WHITE" justification="Graphics.TEXT_JUSTIFY_CENTER" font="Graphics.FONT_MEDIUM" />
<label id="ahr" x="32%" y="18" color="0x888888" justification="Graphics.TEXT_JUSTIFY_CENTER" font="Graphics.FONT_TINY" />
<label id="mhr" x="68%" y="18" color="0x888888" justification="Graphics.TEXT_JUSTIFY_CENTER" font="Graphics.FONT_TINY" />
</layout>
<layout id="BottomLayout">
<drawable class="Background" />
<label id="label" x="95" y="10" color="0x888888" justification="Graphics.TEXT_JUSTIFY_RIGHT" font="Graphics.FONT_TINY" />
<label id="value" x="95" y="27" color="Graphics.COLOR_WHITE" justification="Graphics.TEXT_JUSTIFY_RIGHT" font="Graphics.FONT_LARGE" />
<drawable class="HeartRate" id="HeartRate">
<param name="y">64</param>
</drawable>
<!-- hr labels -->
<label id="hr" x="center" y="72" color="Graphics.COLOR_WHITE" justification="Graphics.TEXT_JUSTIFY_CENTER" font="Graphics.FONT_MEDIUM" />
<label id="ahr" x="32%" y="72" color="0x888888" justification="Graphics.TEXT_JUSTIFY_CENTER" font="Graphics.FONT_TINY" />
<label id="mhr" x="68%" y="72" color="0x888888" justification="Graphics.TEXT_JUSTIFY_CENTER" font="Graphics.FONT_TINY" />
</layout>
</layouts>
+2
View File
@@ -1,4 +1,6 @@
<properties>
<property id="appVersion" type="string">0.8.0</property>
<property id="themeColor" type="string">0088FF</property>
<property id="themeColor2" type="string">0088FF</property>
<property id="themeColor3" type="string">FFFF00</property>
</properties>
+6
View File
@@ -6,5 +6,11 @@
<setting propertyKey="@Properties.themeColor" title="@Strings.ThemeColorTitle">
<settingConfig type="alphaNumeric" />
</setting>
<setting propertyKey="@Properties.themeColor2" title="@Strings.ThemeColor2Title">
<settingConfig type="alphaNumeric" />
</setting>
<setting propertyKey="@Properties.themeColor3" title="@Strings.ThemeColor3Title">
<settingConfig type="alphaNumeric" />
</setting>
</settings>
+3 -3
View File
@@ -1,7 +1,7 @@
<strings>
<string id="AppName">RepaField</string>
<string id="AppVersionTitle">Version</string>
<string id="ThemeColorTitle">Theme Color</string>
<string id="label">My Value</string>
<string id="ThemeColorTitle">Primary Theme Color</string>
<string id="ThemeColor2Title">Secondary Theme Color</string>
<string id="ThemeColor3Title">Clock Color</string>
</strings>