VideoView 创建
在 Activity 中查找 VideoView 并将视频添加到其中。
VideoView videoView = (VideoView) .findViewById(R.id.videoView);
videoView.setVideoPath(pathToVideo);
开始播放视频。
videoView.start();
在 XML 布局文件中定义 VideoView。
<VideoView
android:id="@+id/videoView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center" />