How to perform zoom in/out on VideoView in android?
问题 I am using VideoView & running videos from resources. I want to know, is there any way by which I can perform zoom in/out functionality on running video? 回答1: OK I had this issue and solved it by removing the VideoView and replaced it with a TextureView. You can then apply a Matrix transformation which includes lots of options including zooming. The method for the Matrix I would use is the postScale() method. You can apply multiple effects pre and post, which you can view in the documentation