Android VideoView Proportional Scaling

前端 未结 3 1806
隐瞒了意图╮
隐瞒了意图╮ 2020-12-17 10:13

In Android\'s VideoView, is there any way to achieve the same effect as ImageView.ScaleType.CENTER_CROP?

That is, I want my VideoView to play the video such that it

3条回答
  •  暖寄归人
    2020-12-17 11:16

    ConstraintLayout has an attribute app:layout_constraintDimensionRatio for this purpose.

    
    
        
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent" />
    
    

    See the official documentation for more details

提交回复
热议问题