How do I rotate a Drawable in android?
I have a class that inherits from Drawable and overrides the Draw(canvas) method in order to create an arrow head that I need to place on a line and rotate it to match the slope of the line.
I cannot figure out how to rotate the Drawable; everything I've seen on this has been how to rotate a Bitmap, not a Drawable.
I have tried rotating the canvas first but that causes odd results.
Any suggestions?
The last thing I have tried that I have seen a lot of people discuss is this: