1

こんにちは皆さん 画面の中央で再生されていないビデオがありますが、左側に固定されています. 中央のビデオ表示をきれいにするにはどうすればよいですか?, たとえば、 horse.mp4 ファイルを画面の中央に配置され、デフォルトのように左側に固定されて再生されません

mVideoView.setVideoPath("hprse.mp4");

4

2 に答える 2

0

VitamioDemoにはデモがあります

<io.vov.vitamio.widget.CenterLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <io.vov.vitamio.widget.VideoView
        android:id="@+id/surface_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true" />
</io.vov.vitamio.widget.CenterLayout>
于 2013-06-03T01:19:32.803 に答える