I'm playing around Watch Faces for Wear OS
Currently, I have created
- Background 320x320
- Tick Circle 320x320
- Hours, Minutes and Seconds Hands 320x40
Everything works fine on round devices with the screen size 320x320
Things are getting complicated when I am using devices with screen sizes 360x360. As you can see from the screenshot below the size of Tick Circle is not automatically adjusted.
Question
As I am new to developing Watch Faces and there is not much information about that on the Official Documentation Website, I want to understand how I should handle these cases?
Should I create for each size separate image with the correct size and put it in the correct folder like:
- drawable-round-320dpi
- drawable-round-360dpi
- drawable-round-390dpi
Or is there some other way of doing this, I would prefer not to resize images programmatically from the code, but if it is the only solution I can try.
Here is my playground project source code
P.S. Any documentation, source code will be very useful.