本篇文章给大家分享的是有关Android中使用VideoView实现一个循环播放功能,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。具体如下:package com.hanGCh
本篇文章给大家分享的是有关Android中使用VideoView实现一个循环播放功能,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。
具体如下:
package com.hanGCheng;import com.example.bdcustomer_demo.R;import com.hangcheng.view.MyVideoView;import android.app.Activity;import android.media.MediaPlayer;import android.os.Bundle;import android.view.Window;public class VideoActivity extends Activity { private MyVideoView myVideoView; private String videopath; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE); setContentView(R.layout.video); initView(); videopath = VideoActivity.this.getIntent().getStringExtra("videopath"); myVideoView.setVideoPath(videopath); myVideoView.start(); myVideoView.setOnPreparedListener(new MediaPlayer.OnPreparedListener() { @Override public void onPrepared(MediaPlayer mp) { mp.start(); mp.setLooping(true); } }); myVideoView .setOnCompletionListener(new MediaPlayer.OnCompletionListener() { @Override public void onCompletion(MediaPlayer mp) { myVideoView.setVideoPath(videopath); myVideoView.start(); } }); } private void initView() { myVideoView = (MyVideoView) findViewById(R.id.video); }}
--结束END--
本文标题: Android中使用VideoView实现一个循环播放功能
本文链接: https://lsjlt.com/news/225402.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0