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高级内置函数和各种推导式的介绍:一行搞定的代码
    迭代器、可迭代对象与生成器
    Git 从了解到放弃
    装饰器
    时间处理模块time
    map、filter、reduce、lambda
    python 发邮件
    日志模块
    office套件
    Nginx 实战(一) 集群环境搭建
  • 原文地址:https://www.cnblogs.com/sode/p/2643738.html
Copyright © 2011-2022 走看看