怎样在android里播放视频

播放适配文件主要是使用VideoView类来实现的,这个类将视频的显示和控制集于一身,使得我们仅仅借助它就可以完成一个简单的视频播放器,VideoView的用法和MediaPlayer也比较类似,主要有以下常用方法:

setVideoPath() //设置要播放视频文件的位置
start() //开始或继续播放视频
pause() //暂停播放视频
resume() //将视频从头开始播放
seekTo() //从指定位置开始播放视频
isPlaying() //判断当前是否在播放视频
getDuration() //获取载入的视频文件的时长

新建PlayVideoTest项目,然后修改activity_main.xml代码:

<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"
            android:text="Pause"/>
        <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>

在这个布局中,首先放置了3个按钮,分别用于控制视频的播放,暂停和重新播放,然后在按钮下面由放置了一个VideoView来显示视频 
修改MainActivity代码

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);
        videoView = (VideoView)findViewById(R.id.video_view);
        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();
        }
    }

    private void initVideoPath(){
        File file = new File(Environment.getExternalStorageDirectory(), "movie.mp4");
        videoView.setVideoPath(file.getPath());//指定视频文件路径
    }

    @Override
    public void onRequestPermissionsResult(int requestCode, String[] permissions, 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:
                break;
        }
    }

    @Override
    public void onClick(View view) {
        switch (view.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;
        }
    }

    @Override
    protected void onDestroy() {
        super.onDestroy();
        if (videoView != null){
            videoView.suspend();
        }
    }
}

首先在onCreate()方法中同样进行了一个运行时权限处理,因为视频文件将会在SD卡上,当用户同意授权之后就会调用initVideoPath()方法来设置视频文件的路径,我们需要事先在SD卡的根目录下放置一个名为movie.mp4的视频文件. 
当点击Play按钮时会进行判断, 如果当前没有播放视频,则调用start()方法开始播放,当点击Pause按钮时会进行判断,如果当前视频正在播放,则调用pause()方法暂停播放,当点击Replay按钮时会进行判断,如果当前视频正在播放,则调用resume()方法从头播放视频. 
最后在onDestroy()方法中,我们还需要调用一下suspend()方法,将VideoView占用的资源释放掉. 
另外,要记得在AndroidManifest.xml中声明权限:

1 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
2     package="com.example.playaudiotest">
3     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
4     ...
5 </manifest>
原文地址:https://www.cnblogs.com/ltw222/p/14912375.html