3

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

在此处输入图像描述

<?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>
4

1 回答 1

8

这应该可以,它将拉伸您的视频以填满整个屏幕:

<?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>
于 2013-02-14T14:00:04.953 回答