Android 维塔米奥视频中心问题

Android 维塔米奥视频中心问题,android,video,aspect-ratio,vitamio,Android,Video,Aspect Ratio,Vitamio,嗨,伙计们,我有一个视频没有在屏幕中央播放,但它卡在了左侧,如何才能使中央的视频显示美观整洁?, 例如,我希望horse.mp4文件在屏幕中居中,而不是像默认情况下那样固定在左侧播放 mVideoView.setVideoPath(“hprse.mp4”) 使其成为父布局的中心。有演示 <io.vov.vitamio.widget.CenterLayout android:layout_width="match_parent" android:layout_height=

嗨,伙计们,我有一个视频没有在屏幕中央播放,但它卡在了左侧,如何才能使中央的视频显示美观整洁?, 例如,我希望horse.mp4文件在屏幕中居中,而不是像默认情况下那样固定在左侧播放

mVideoView.setVideoPath(“hprse.mp4”)

使其成为父布局的中心。

有演示

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