zoukankan      html  css  js  c++  java
  • android mp4 videoView

    引用:http://www.elexcon.com/news/55447.html

      public class Activity01 extends Activity

      {

      /** Called when the activity is first created. */

      @Override

      public void onCreate(Bundle savedInstanceState)

      {

      super.onCreate(savedInstanceState);

      setContentView(R.layout.main);

      /* 创建VideoView对象 */

      final VideoView videoView = (VideoView) findViewById(R.id.VideoView01);

      /* 操作播放的三个按钮 */

      Button PauseButton = (Button) this.findViewById(R.id.PauseButton);

      Button LoadButton = (Button) this.findViewById(R.id.LoadButton);

      Button PlayButton = (Button) this.findViewById(R.id.PlayButton);

      /* 装载按钮事件 */

      LoadButton.setOnClickListener(new OnClickListener()

      {

      public void onClick(View arg0)

      {

      /* 设置路径 */

      videoView.setVideoPath(“/sdcard/test.mp4″);

      /* 设置模式-播放进度条 */

      videoView.setMediaController(new MediaController(Activity01.this));

      videoView.requestFocus();

      }

      });

      /* 播放按钮事件 */

      PlayButton.setOnClickListener(new OnClickListener()

      {

      public void onClick(View arg0)

      {

      /* 开始播放 */

      videoView.start();

      }

      });

      /* 暂停按钮 */

      PauseButton.setOnClickListener(new OnClickListener()

      {

      public void onClick(View arg0)

      {

      /* 暂停 */

      videoView.pause();

      }

      });

      }

      }

  • 相关阅读:
    python语言程序设计部分习题
    Python基础:Python运行的两种基本方式
    python简介及详细安装方法
    MTBF平均故障间隔时间(转)
    SSH远程登录配置文件sshd_config详解
    SSH服务详解(转)
    GCC编译之后的代码信息
    移动设备识别ID
    STM32CubeMX自建MDK工程的基本步骤
    职位英文缩写
  • 原文地址:https://www.cnblogs.com/sode/p/2643738.html
Copyright © 2011-2022 走看看