主布局:

 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="net.bwie.videoview.activity.MainActivity"> <Button
android:id="@+id/next_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="下一页"/> <Button
android:id="@+id/play_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="播放"/> <VideoView
android:id="@+id/video_view"
android:layout_width="match_parent"
android:layout_height="match_parent"/> </LinearLayout>

主函数:

 public class MainActivity extends AppCompatActivity implements View.OnClickListener {

     protected Button mNextBtn;
protected Button mPlayBtn;
protected VideoView mVideoView; @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
super.setContentView(R.layout.activity_main);
initView();
} @Override
public void onClick(View view) {
if (view.getId() == R.id.next_btn) { VideoListActivity.startActivity(this); } else if (view.getId() == R.id.play_btn) {
String videoPath = "http://172.29.23.6:8080/video/aa.3gp";
playVideo(videoPath);
}
} private void playVideo(String videoPath) {
mVideoView.setVideoPath(videoPath);
// 设置多媒体控制器
mVideoView.setMediaController(new MediaController(this));
mVideoView.start();
} private void initView() {
mNextBtn = (Button) findViewById(R.id.next_btn);
mNextBtn.setOnClickListener(MainActivity.this);
mPlayBtn = (Button) findViewById(R.id.play_btn);
mPlayBtn.setOnClickListener(MainActivity.this);
mVideoView = (VideoView) findViewById(R.id.video_view);
}
}

activity_video_list:

 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="net.bwie.videoview.activity.VideoListActivity"> <android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layoutManager="android.support.v7.widget.LinearLayoutManager"/> </LinearLayout>

VideoListActivity:

 public class VideoListActivity extends AppCompatActivity {

     protected RecyclerView mRecyclerView;

     public static void startActivity(Context context) {
Intent intent = new Intent(context, VideoListActivity.class);
context.startActivity(intent);
} @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
super.setContentView(R.layout.activity_video_list);
initView(); List<String> pathList = new VideoBean().getPathList();
VideoListAdapter adapter = new VideoListAdapter(this, pathList);
mRecyclerView.setAdapter(adapter);
} private void initView() {
mRecyclerView = (RecyclerView) findViewById(R.id.recycler_view);
}
}

item_video:

 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"> <TextView
android:id="@+id/progress_tv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="当前进度"/> <Button
android:id="@+id/play_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="播放"/> <VideoView
android:id="@+id/video_view"
android:layout_width="match_parent"
android:layout_height="200dp"
android:layout_gravity="center_horizontal"
android:visibility="invisible"/>
<!--android:visibility="invisible"代表视图不可见。点击播放时才可见--> </LinearLayout>

Bean类:

 package net.bwie.videoview.bean;

 import android.os.Environment;

 import java.util.ArrayList;
import java.util.List; public class VideoBean { private List<String> pathList; public VideoBean() {
pathList = new ArrayList<>();
for (int i = 0; i < 20; i++) {
String path = Environment.getExternalStorageDirectory()
+ "/VID_20171117_144736.3gp";
pathList.add(path);
}
} public List<String> getPathList() {
return pathList;
} public void setPathList(List<String> pathList) {
this.pathList = pathList;
}
}

Adapter:

 public class VideoListAdapter extends RecyclerView.Adapter<VideoListAdapter.ViewHolder> {

     private Context mContext;
private List<String> mPathList; // 当前正在播放的VideoView
private VideoView mPlayingVideoView;
//记录正在播放的进度TextView
private TextView mPlayingProgressTextiew; private Handler mHandler; public VideoListAdapter(Context context, List<String> pathList) {
mContext = context;
mPathList = pathList;
} @Override
public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View itemView = LayoutInflater.from(mContext)
.inflate(R.layout.item_video, parent, false);
return new ViewHolder(itemView);
} @RequiresApi(api = Build.VERSION_CODES.JELLY_BEAN_MR1)
@Override
public void onBindViewHolder(final ViewHolder holder, int position) {
// 获取播放地址
final String path = mPathList.get(position); // 如果VideoView滑出去时正在播放,下次复用进入的item应该停止播放并隐藏
holder.mVideoView.stopPlayback();// 停止播放
holder.mVideoView.setVisibility(View.INVISIBLE);// 设置不可见
holder.mProgressTextView.setText("0%"); // 播放按钮绑定监听器
holder.mPlayBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) { // 停止上一个VideoView的播放并隐藏,才能继续播放当前的视频
if (mPlayingVideoView != null) {
mPlayingVideoView.stopPlayback();
mPlayingVideoView.setVisibility(View.INVISIBLE);
} // 播放时让VideoView可见
holder.mVideoView.setVisibility(View.VISIBLE);// 设置可见性
holder.mVideoView.setVideoPath(path);
holder.mVideoView.start(); // 记录当前正在播放的VideoView
mPlayingVideoView = holder.mVideoView;
mPlayingProgressTextiew = holder.mProgressTextView; // 提示开始播放的通知
showPlayingNotification(); // 点击播放按钮,使用Handler每间隔1s更新一次进度
mHandler = new Handler(new Handler.Callback() {
@Override
public boolean handleMessage(Message msg) { // 获取VideoView当前进度和总进度
int currentPosition = mPlayingVideoView.getCurrentPosition();
int duration = mPlayingVideoView.getDuration();
float progress = currentPosition / ((float) duration) * 100; // 展示进度百分比
mPlayingProgressTextiew.setText("0%");
holder.mProgressTextView.setText(progress + "%");
mHandler.sendEmptyMessageDelayed(1, 1000);
return true;
}
}); // 第一次让Handler更新进度
mHandler.sendEmptyMessageDelayed(1, 1000);
}
}); } // 展示开始播放的通知
private void showPlayingNotification() {
NotificationCompat.Builder builder = new NotificationCompat.Builder(mContext);
// 必须设置3项:小图标,标题,内容
builder.setSmallIcon(R.mipmap.ic_launcher)
.setContentTitle("视频开始播放")
.setContentText("正在播放"); Notification notification = builder.build(); // 使用通知管理者发布通知
NotificationManager nm = (NotificationManager)
mContext.getSystemService(Context.NOTIFICATION_SERVICE);
; // 发布通知
nm.notify(1, notification);
} @Override
public int getItemCount() {
return mPathList == null ? 0 : mPathList.size();
} static class ViewHolder extends RecyclerView.ViewHolder { Button mPlayBtn;
VideoView mVideoView;
TextView mProgressTextView; public ViewHolder(View itemView) {
super(itemView); mPlayBtn = ((Button) itemView.findViewById(R.id.play_btn));
mVideoView = ((VideoView) itemView.findViewById(R.id.video_view));
mProgressTextView = ((TextView) itemView.findViewById(R.id.progress_tv));
}
} }

被忘了加权限:

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

<uses-permission android:name="android.permission.INTERNET"/>

VideoView获取本地视频播放的更多相关文章

  1. SurfaceView获取本地视频播放

    1.定义 可以直接从内存或者DMA等硬件接口取得图像数据,是个非常重要的绘图容器. 它的特性是:可以在主线程之外的线程中向屏幕绘图上.这样可以避免画图任务繁重的时候造成主线程阻塞,从而提高了程序的反应 ...

  2. Android开发之获取本地视频和获取自拍视频

    1.获取本地所有视频 public void getLoadMedia() { Cursor cursor = UILApplication.instance.getApplicationContex ...

  3. Android使用VideoView播放本地视频及网络视频Demo

    1.xm文件 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:and ...

  4. Win10《芒果TV》更新v3.5.0夏至版:会员尊享蓝光画质,关联本地视频播放

    在Win10秋季创意者更新前夕,Win10版<芒果TV>全平台同步更新夏至版v3.5.0,新增会员蓝光画质,关联本地视频播放,进一步提升使用体验. Win10版<芒果TV>V3 ...

  5. android获取本地图片并显示图片

    import java.io.FileNotFoundException; import android.content.ContentResolver; import android.content ...

  6. Linux编程获取本地IP

    #include <stdio.h> #include <sys/types.h> #include <ifaddrs.h> #include <netine ...

  7. Java获取本地IP地址

    import java.net.InetAddress; import java.net.UnknownHostException; public class IpTest { public stat ...

  8. 获取本地IP地址信息

    2012-06-05    /// <summary>         /// 获取本地IP地址信息         /// </summary>         void G ...

  9. 用angular实时获取本地localStorage数据,实现一个模拟后台数据登入的效果

    研究了一上午,终于做出了,实时获取本地localStorage来模拟注册登入~~~ <!DOCTYPE html><html><head lang="en&qu ...

随机推荐

  1. nginx发布静态网页

    http://www.jb51.net/article/71384.htm 切记不要把项目放在/root下 会出现 nginx open() "" failed (13: Perm ...

  2. dockerfile简述

    作用 Dockerfile的内容是一坨可以执行的代码(或者说是指令)(docker的DSL),这些代码使得创建镜像的操作可以复用以及自动化. 指令格式 Dockerfile的指令格式很简单: INST ...

  3. 使用GitHub Pages + Jekyll 建立博客

    https://pages.github.com/ http://jekyllbootstrap.com/usage/jekyll-quick-start.html Jekyll是一个静态网站生成器, ...

  4. docker 使用时一些问题点

    1.run 参数 --privileged,默认是关闭的,使用该参数,container 内的 root 拥有真正的 root 权限,否则,container 内的 root 只是外部的一个普通用户权 ...

  5. spring boot 自动更新静态文件和后台代码 -- 热部署

    在spring boot使用的过程中, 发现我修改了静态文件, 前台刷新后, 没有任何变化, 必须重新启动, 才能看到, 这简直不能让人接受. 那有什么方法来解决这个问题呢. Baidu之后, 得到了 ...

  6. CentOS QT can't find lGL

    直接安装: yum install libGL, yum install libGL-devel 库即可.

  7. 自我总结 (三) --(Java Web学习)

    自我完善的过程就是在不断的自我总结不断的改进. 在前的近半个月里,我们经过了考试,也开始了java web的项目. 先看看这次的考试.考完之后我就觉得有点不对劲的,结果 结果真的是一塌糊涂.上周五的时 ...

  8. layer插件学习——提示层

    本文是自己整理的关于layer插件的提示层的结果 一.准备工作 下载jQuery插件和layer插件,并引入插件(注意:jQuery插件必须在layer插件之前引用) 百度云资源链接: jQuery插 ...

  9. Java设计模式学习记录-适配器模式

    前言 之前已经将五个创建型设计模式介绍完了,从这一篇开始介绍结构型设计模式,适配器模式就是结构型模式的一种,适配器要实现的效果是把“源”过渡到“目标”. 适配器模式 在开发过程中,使用一个已经存在的类 ...

  10. Spark2.1.0模型设计与基本架构(下)

    阅读提示:读者如果对Spark的背景知识不是很了解的话,建议首先阅读<SPARK2.1.0模型设计与基本架构(上)>一文. Spark模型设计 1. Spark编程模型 正如Hadoop在 ...