gpt4 book ai didi

Android VideoView如何缩放为ImageView缩放类型fitXY?

转载 作者:可可西里 更新时间:2023-11-01 19:10:13 25 4
gpt4 key购买 nike

我在 RelativeLayout 中放置了一个 ImageView 和一个 VideoView。可以通过 scaleType="fitXY" 缩放 ImageView 以填充整个布局。但是,VideoView 没有类似的比例属性。顺便说一句,我通过设置 setMediaController(null) 隐藏视频控件,只显示视频内容。是否可以在不保持纵横比的情况下缩放 VideoView?这是布局示例。

<RelativeLayout
android:layout_width="280dp"
android:layout_height="200dp">

<ImageView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/image"
android:scaleType="fitXY" />

<VideoView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/video"
android:visibility="invisible"
android:layout_centerInParent="true" />
</RelativeLayout>

最佳答案

尝试将 VideoView 放入 RelativeLayout 并设置以下属性以全屏显示视频:

<VideoView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/video"
android:visibility="invisible"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"/>

注意:请根据您的要求设置可见度值。

关于Android VideoView如何缩放为ImageView缩放类型fitXY?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27181595/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com