1

I am a newbie here and I'd like to ask about Bitmaps. Is the image below possible?

enter image description here

I just want a bitmap image to display diagonally or in any position other than horizontal. I'm using SurfaceView but for the mean time while testing this, I'm just using ImageView. Help. faints

antoniom
  • 3,143
  • 1
  • 37
  • 53
  • Did you have a look at: http://stackoverflow.com/questions/8981845/androidrotate-image-in-imageview-by-an-angle? – Phantômaxx Oct 18 '14 at 16:00

1 Answers1

0

If you are rotating an ImageView you can use a PropertyAnimator.

ObjectAnimator.ofFloat(imageView, "rotation", 0f, 45f);

DanyBoricua
  • 400
  • 1
  • 2
  • 11