Android Question Rotate ImageView

ElliotHC

Active Member
Licensed User
Hi,
Does anyone know if there is there a way to set an imageview to a specific angle e.g. 10 degrees?
 

klaus

Expert
Licensed User
Longtime User
Yes you can.
Declare the ImageView as a B4XView and you can rotate it.
B4X:
ImageView1.Rotation = 10
Or, if you declared the ImageView as an ImageView you could use this:
B4X:
ImageView1.As(B4XView).Rotation = 10
 
Last edited:
Upvote 1
Top