Video.java
上传用户:xmjingguan
上传日期:2009-07-06
资源大小:2054k
文件大小:1k
源码类别:

android开发

开发平台:

Java

  1. /***
  2.  * Excerpted from "Hello, Android!",
  3.  * published by The Pragmatic Bookshelf.
  4.  * Copyrights apply to this code. It may not be used to create training material, 
  5.  * courses, books, articles, and the like. Contact us if you are in doubt.
  6.  * We make no guarantees that this code is fit for any purpose. 
  7.  * Visit http://www.pragmaticprogrammer.com/titles/eband for more book information.
  8. ***/
  9. package org.example.video;
  10. import android.app.Activity;
  11. import android.os.Bundle;
  12. import android.widget.VideoView;
  13. public class Video extends Activity {
  14.    @Override
  15.    public void onCreate(Bundle savedInstanceState) {
  16.       super.onCreate(savedInstanceState);
  17.       // Fill view from resource
  18.       setContentView(R.layout.main);
  19.       VideoView video = (VideoView) findViewById(R.id.video);
  20.       
  21.       // Load and start the movie
  22.       video.setVideoPath("/sdcard/samplevideo.3gp");
  23.       video.start();
  24.       
  25.    }
  26. }