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 に答える