2

Lets say i place mutile drawables on a canvas at different places. I am willing to rotate each image in a form (certain angle of degree). So i need code for rotating drawable over canvas. The thing is that rotation of any drawable must not reflect to another drawable over Canvas.

Kara
  • 6,115
  • 16
  • 50
  • 57
Suresh Sharma
  • 1,826
  • 22
  • 41
  • Does this answer your question? [Rotating Image on A canvas in android](https://stackoverflow.com/questions/8712652/rotating-image-on-a-canvas-in-android) – Mahozad Jun 28 '21 at 13:36

1 Answers1

-1

Try

yourCanvas.rotate(90);

public void rotate (float degrees) on Android.Developers

locobastos
  • 135
  • 2
  • 15