Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發實例 >> Android多媒體學習十五:使用在內置的Camera錄制視頻

Android多媒體學習十五:使用在內置的Camera錄制視頻

編輯:Android開發實例

使用Android自帶的Camera應用來錄制視頻也很簡單。直接指定一個ACTION_VIDEO_CAPTURE的Action就可以了,和Image類似

代碼:

 

  1. package demo.camera;  
  2. import android.app.Activity;  
  3. import android.content.Intent;  
  4. import android.net.Uri;  
  5. import android.os.Bundle;  
  6. import android.provider.MediaStore;  
  7. import android.view.View;  
  8. import android.widget.VideoView;  
  9. /**  
  10.  * 本實例介紹怎樣利用Android自帶的Camera來錄制視頻  
  11.  *   
  12.  * 指定Action為MediaStore.ACTION_VIDEO_CAPTURE  
  13.  * @author Administrator  
  14.  *  
  15.  */ 
  16. public class VideoCaptureDemo extends Activity {  
  17.       
  18.     private VideoView videoView;  
  19.       
  20.     private Uri videoUri;  
  21.       
  22.     public void onCreate(Bundle savedInstanceState){  
  23.         super.onCreate(savedInstanceState);  
  24.         setContentView(R.layout.video_capture);  
  25.           
  26.         videoView = (VideoView)this.findViewById(R.id.video_view);  
  27.     }  
  28.       
  29.     public void onActivityResult(int requestCode, int resultCode, Intent data){  
  30.         if(resultCode == RESULT_OK){  
  31.             videoUri = data.getData();  
  32.         }  
  33.     }  
  34.       
  35.     public void onClick(View v){  
  36.         int id = v.getId();  
  37.           
  38.         if(id == R.id.btn_capture){  
  39.             Intent intent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE);  
  40.             startActivityForResult(intent, 1);  
  41.         }else if(id == R.id.btn_play){  
  42.             videoView.setVideoURI(videoUri);  
  43.             videoView.start();  
  44.         }  
  45.     }  
  46. }  

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved