本文将讲解使用VideoView播放本地视频,使用起来相对简单,在其中添加了MediaController类来实现更多的视频控制功能。
实现效果图:
代码;
布局文件:
使用VideoView,VideoView是一个带有视频播放功能的视图,可直接在布局中使用。
1
2
3
4
5
|
<relativelayout xmlns:android= "http://schemas.android.com/apk/res/android" xmlns:tools= "http://schemas.android.com/tools" android:layout_width= "match_parent" android:layout_height= "match_parent" > <videoview android:id= "@+id/videoView" android:layout_width= "match_parent" android:layout_height= "wrap_content" > </videoview></relativelayout> |
MainActivity:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
package com.multimediademo11videoview; import android.app.Activity; import android.net.Uri; import android.os.Bundle; import android.os.Environment; import android.widget.MediaController; import android.widget.VideoView; public class MainActivity extends Activity { private VideoView videoView; @Override protected void onCreate(Bundle savedInstanceState) { super .onCreate(savedInstanceState); setContentView(R.layout.activity_main); videoView = (VideoView) findViewById(R.id.videoView); /** * VideoView控制视频播放的功能相对较少,具体而言,它只有start和pause方法。为了提供更多的控制, * 可以实例化一个MediaController,并通过setMediaController方法把它设置为VideoView的控制器。 */ videoView.setMediaController( new MediaController( this )); Uri videoUri = Uri.parse(Environment.getExternalStorageDirectory() .getPath() + "/1.mp4" ); videoView.setVideoURI(videoUri); videoView.start(); } } |
源代码下载:
点击下载源码