Center Crop an Android VideoView

后端 未结 4 886
既然无缘
既然无缘 2020-12-05 23:46

I am looking for something like the CENTER_CROP in ImageView.ScaleType

Scale the image uniformly (maintain the image\'s aspect ratio) so that both dim

4条回答
  •  天命终不由人
    2020-12-06 00:23

    You can only achieve this with a TextureView. (surfaceView won't work either). Here's a lib for playing video in a textureView with center crop function. TextureView can only be used in api level 14 and up unfortunately.

    https://github.com/dmytrodanylyk/android-video-crop

    Another possibility is to zoom in the videoview just right, but I haven't tried that yet.

提交回复
热议问题