Is it possible to use alpha channel on vivoactive 5?

I recently switched to a Vivoactive 5 from Fitbit and I've been interested in messing around with creating watch faces.  I can see that the device doesn't support "setFill" or "setBlendMode" based on the documentation.  I've tried using "setColor" color to a semi-transparent color, but that doesn't seem to work.  Here's part of my test code:

dc.drawText(centerX, centerY, Graphics.FONT_LARGE, "0123456789"Graphics.TEXT_JUSTIFY_CENTER | Graphics.TEXT_JUSTIFY_VCENTER);

// dc.setColor(Graphics.createColor(128, 0, 0, 0), IMAGE_COLOR_GREY);
dc.setFill(Graphics.createColor(128, 0, 0, 0));
dc.fillRectangle(centerX - 20, centerY - 2, 40, 40);
This works as I would like on the Venu3 emulator, putting a small semi-transparent box over the numbers.  This fails on Vivoactive 5 due to unsupported "setFill" function.  Based on a conversation I saw elsewhere in the forums, I had previously tried the "setColor" call that is commented out.  While that executes on both device emulators, it is completely opaque on both devices.
Is there any way to due semi-transparent graphics on a Vivoactive 5?
Thanks!
Craig