大家好,我有一个视频没有在屏幕中央播放,但它卡在左侧,如何使视频在中间显示美观整洁?例如,我想要 horse.mp4 文件居中在屏幕上,不会像默认一样卡在左边
mVideoView.setVideoPath("hprse.mp4");
大家好,我有一个视频没有在屏幕中央播放,但它卡在左侧,如何使视频在中间显示美观整洁?例如,我想要 horse.mp4 文件居中在屏幕上,不会像默认一样卡在左边
mVideoView.setVideoPath("hprse.mp4");
<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" />
使其成为父布局的中心。
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>