I have written a SmartWatch 2 control extension which runs fine, but I am seeing a different font size when the application is installed on different phones. Most of the time the font is displayed correctly, but on some phones, the font on the SmartWatch is unusually large.
Here is the XML of the text widget:
<TextView
android:id="@+id/watch_main_text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_below="@+id/watch_title_bar"
android:gravity="center"
android:padding="5dp"
android:text="@string/watch_choose_workout_string"
android:textColor="@color/white"
android:textSize="10sp" />
Is there some sort of global font size setting that overrides the font size specified in the XML resource?
Thanks!