[android-developers] rotating VideoView

2012-03-08 Thread bob
I was looking at the RotatingButton api demo (which allows you to rotate a button), and I thought it would be nice to rotate a videoview. However, I tried calling setRotationY on a VideoView, and it didn't seem to work. Anyone know if this works or not? Thanks. -- You received this

Re: [android-developers] rotating VideoView

2012-03-08 Thread Mark Murphy
AFAIK, you cannot rotate a SurfaceView, which is what VideoView uses under the covers. In principle, this should work with a TextureView and a MediaPlayer on Android 4.0, though I certainly have not tried it. On Thu, Mar 8, 2012 at 1:43 PM, bob b...@coolfone.comze.com wrote: I was looking at