@cxm-2016
2016-09-18T10:22:02.000000Z
字数 1164
阅读 3108
android
no
陈小默(水品有限,恳请批评指正)
VideoView是Android提供的一款用于播放视频的控件[1]
我们可以将组件添加到布局文件中,也可以在程序中创建。
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_vv"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.cccxm.crazy.VVActivity">
<VideoView
android:id="@+id/mVideoView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</FrameLayout>
我们可以采用下面两种方式去添加一个视频文件:
public void setVideoPath(String path);
根据文件路径去播放视频文件
public void setVideoURI(Uri uri);
根据Uri去指定视频文件
VideoView提供了start()
、stop()
和pause()
三个方法去控制视频播放。但是对于视频播放来说自己去处理逻辑关系仍然稍显复杂。于是Android提供一个MediaController类作为媒体文件播放的控制器。用法如下:
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_vv)
val mController = MediaController(this)
mVideoView.setVideoPath(video)
mVideoView.setMediaController(mController)
mController.setMediaPlayer(mVideoView)
mVideoView.requestFocus()
}