0

I have problem with rotate video in Android. I used TextureView to rotate the video but it didn't work fine. It show black screen on device Android 4.2.2. Any body have idea for rotate video? such as use SurfaceView. Please help me. Thanks.

andiDeve
  • 77
  • 1
  • 4
Rin
  • 21

1 Answers1

0

A Video in Android can be rotated by using the following code:

videoView.setRotation(90f);
 videoView.setVideoURI(videoUri);
 videoView.start();

I used the above code to rotate a video for my app

Chan-Han-Dan
  • 45
  • 1
  • 9
  • 1
    Hi Andy, thank you but I use VideoView and setRotation(90f) for it. It can't play video. It show black screen. If you have solution. Please help me. – Rin Aug 12 '14 at 09:35