Android 视频视图中的全宽

Android Full Width in Video View

我试图将线性布局或相对布局内的视频视图拉伸至全屏,但应用程序不会将视频视图的宽度拉伸至 android 屏幕。 左边和右边总是有 10 到 15 dp space。线性布局和相对布局也不会拉伸到全屏。我希望它在 width.i 中填满屏幕,也尝试过 "match_parent" 代替 "fill_parent",但结果是一样的。 这是我的代码

 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res    /android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/bgsong"
android:orientation="vertical"
 >

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

video_player_view = (VideoView) findViewById(R.id.video_view);
    dm = new DisplayMetrics();
    this.getWindowManager().getDefaultDisplay().getMetrics(dm);
    int height = dm.heightPixels;
    int width = dm.widthPixels;
    video_player_view.setMinimumWidth(width);
    video_player_view.setMinimumHeight(height);
    Uri uri = Uri.parse("android.resource://" + getPackageName() + "/" + R.raw.video);
    video_player_view.setVideoURI(uri); 
    video_player_view.start();

实际上视频的纵横比与屏幕的纵横比不匹配,所以你会遇到这样的问题,如果你想继续这个和你UI看起来很漂亮,只需将背景颜色设置为LinearLayout。 即 android:background="#000000"

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent" >

<VideoView
    android:id="@+id/videoView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:layout_centerHorizontal="true"
    android:layout_centerInParent="true"
    android:layout_centerVertical="true" />

</RelativeLayout>