播放视频文件其实并不比播放音频文件复杂,主要是使用VideoView类来实现,这个类将视频的显示和控制集于一身,使得我们仅仅借助它就可以完成一个简易的视频播放器。
VideoView的用法和MediaPlayer也比较类似,主要有以下常用方法:
setVideoPath() 设置要播放的视频文件的位置
start() 开始或继续播放视频
pause() 暂停播放视频
resume() 将视频重头开始播放
seekTo() 从指定的位置开始播放视频
isPlaying() 判断当前是否正在播放视频
getDuration() 获取载入的视频文件的时长
新建PlayVideoTest项目
修改activity_main.xml中的代码:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent" > <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content"> <Button android:id="@+id/play" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="Play" /> <Button android:id="@+id/pause" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" /> <Button android:id="@+id/replay" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:text="Replay" /> </LinearLayout> <VideoView android:id="@+id/video_view" android:layout_width="match_parent" android:layout_height="wrap_content" /> </LinearLayout>在这个布局文件中,首先放置了三个按钮,分别用于控制视频的播放,暂停和重新播放,然后在按钮下面又放置了一个VideoView,稍后的视频就将在这里显示:
接下来修改MainActivity中的代码,如下所示:
package net.nyist.lenovo.playvideotest; import android.Manifest; import android.content.pm.PackageManager; import android.os.Environment; import android.support.annotation.NonNull; import android.support.v4.app.ActivityCompat; import android.support.v4.content.ContextCompat; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.Toast; import android.widget.VideoView; import java.io.File; public class MainActivity extends AppCompatActivity implements View.OnClickListener { private VideoView videoView; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); Button play = (Button) findViewById(R.id.play); Button pause = (Button) findViewById(R.id.pause); Button replay = (Button) findViewById(R.id.replay); play.setOnClickListener(this); pause.setOnClickListener(this); replay.setOnClickListener(this); if (ContextCompat.checkSelfPermission(MainActivity.this, Manifest.permission.WRITE_EXTERNAL_STORAGE)!= PackageManager.PERMISSION_GRANTED){ ActivityCompat.requestPermissions(MainActivity.this,new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE},1); }else { initVideoPath();//初始化MediaPlayer } } private void initVideoPath(){ File file = new File(Environment.getExternalStorageDirectory(),"movie.mp4"); videoView.setVideoPath(file.getPath()); } @Override public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) { switch (requestCode){ case 1: if (grantResults.length > 0&&grantResults[0] == PackageManager.PERMISSION_GRANTED){ initVideoPath(); }else { Toast.makeText(this, "拒绝权限将无法使用程序", Toast.LENGTH_SHORT).show(); finish(); } break; default: } } @Override protected void onDestroy() { super.onDestroy(); if (videoView!=null){ videoView.suspend();//将VideoView所占用的资源释放掉。 } } @Override public void onClick(View v) { switch (v.getId()){ case R.id.play: if (!videoView.isPlaying()){ videoView.start();//开始播放 } break; case R.id.pause: if (!videoView.isPlaying()){ videoView.pause();//暂停播放 } break; case R.id.replay: if (!videoView.isPlaying()){ videoView.resume();//重新播放 break; } } } }这部分代码就很好理解了,因为它和前面播放音频的代码非常类似。首先在onCreate()方法中同样进行了一个运行时权限处理,因为视频文件将会放在SD卡上。
当用户同意授权了之后就会调用initVideoPath()方法来设置视频文件的路径,这里我们需要事先在SD卡的根目录下放置一个名为movie.mp4的视频文件。
下面看一下各个按钮的点击事件中的代码:
当点击Play按钮时会进行判断, 如果当前并没有正在播放视频, 则调用start()方法开始播放, 当点击Pause按钮时会判断, 如果当前视频正在播放, 则调用pause()方法暂停播放。 当点击Replay按钮时会判断, 如果当前视频正在播放, 则调用resume()方法从头播放视频。最后在onDestroy()方法中,我们还需要调用一下suspend()方法,将VideoView所占用的资源释放掉。
另外,仍然始终要记得在AndroidManifest.xml文件中声明用到的权限。
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>点击Pause按钮可以暂停视频的播放,点击Replay按钮可以从头播放视频。