Hello community,
I am developing my first watch face and am trying to create a custom font for time design.
My idea was to create each digits as bitmap (png) and scale them for each screen size. Then I realised that drawScaledBitmap is only available for api >= 4.x but I want to support more devices and need to support a lower api (3.2.0).
So, my alternative now is generate 3 sets of images with differentes sizes. My concern here is the size of the app (30 png with a total of 202KB, I guess it is not appropiated for the limited storage of watches).
I don't have any other approach in mind to really create custom watch faces where the font is not native, maybe I am missing something and that is the reason of the post. Is there an alternative way to approach this problem?
Thanks!