gpt4 book ai didi

android - 在 Android 中播放视频时,VideoView 不会覆盖整个屏幕

转载 作者:太空狗 更新时间:2023-10-29 16:42:55 25 4
gpt4 key购买 nike

我开发了一个使用 VideoView 播放视频的媒体播放器。它工作正常,但有一个问题,即播放视频底部有一个空白区域。您可以查看我的代码和播放器的屏幕截图。请在这方面帮助我,我将非常感谢你。提前致谢。

enter image description here

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
>

<VideoView
android:id="@+id/video_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>

</LinearLayout>

最佳答案

这应该有效,它会拉伸(stretch)您的视频以填满整个屏幕:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<VideoView android:id="@+id/videoViewRelative"
android:layout_alignParentTop="true"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
</VideoView>

</RelativeLayout>

关于android - 在 Android 中播放视频时,VideoView 不会覆盖整个屏幕,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14876367/

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