作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的应用程序中,我将显示视频。但是视频的高度和宽度小于设备屏幕的高度宽度。那么如果我想拉伸(stretch)设置为设备高度和宽度的视频高度和宽度,我应该怎么做。
我正在使用 VideoView 加载视频。我已将其属性设置为高度和宽度的 fill_parent。但即使这样做,我也无法将拉伸(stretch)视频拉伸(stretch)到设备的高度和宽度。
主.xml
<RelativeLayout
android:id="@+id/playingRelativeLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:background="#FFFFFF">
<VideoView
android:id="@+id/myVideoView"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:layout_centerInParent="true"
android:fitsSystemWindows="true"
/>
所以请帮助我。
谢谢。
最佳答案
Android 不支持调整视频大小,您可能需要查看可以使用的第三方库。默认情况下,android 没有这个,如果我没记错的话。
关于安卓 :How to stretch video in android device with the device height-width?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8953187/
我是一名优秀的程序员,十分优秀!