編輯:Android開發實例
在上一篇中,我們在代碼中有
- case R.id.btn2:
- //通過MediaRecorder類來實現自己的音頻錄制程序
- Intent intent2 = new Intent();
- intent2.setClass(this, MyAudioRecord.class);
- startActivityForResult(intent2, 1);
- break;
這是啟動我們自己定義的音頻錄制程序來完成錄制工作。
代碼如下:
- package demo.camera;
- import java.io.File;
- import java.io.IOException;
- import android.app.Activity;
- import android.content.ContentValues;
- import android.content.Intent;
- import android.media.MediaPlayer;
- import android.media.MediaRecorder;
- import android.net.Uri;
- import android.os.Bundle;
- import android.os.Environment;
- import android.provider.MediaStore;
- import android.view.View;
- import android.widget.Button;
- import android.widget.TextView;
- /**
- * 這個是利用MediaRecorder類來實現自己的音頻錄制程序
- *
- * 為了可以錄制音頻我們需要RECORD_AUDIO權限
- * 為了可以寫入SDCard,我們需要WRITE_EXTERNAL_STORAGE權限
- * @author Administrator
- *
- */
- public class MyAudioRecord extends Activity {
- private TextView stateView;
- private Button btnStart,btnStop,btnPlay,btnFinish;
- private MediaRecorder recorder;
- private MediaPlayer player;
- private File audioFile;
- private Uri fileUri;
- public void onCreate(Bundle savedInstanceState){
- super.onCreate(savedInstanceState);
- setContentView(R.layout.my_audio_record);
- stateView = (TextView)this.findViewById(R.id.view_state);
- stateView.setText("准備開始");
- btnStart = (Button)this.findViewById(R.id.btn_start);
- btnStop = (Button)this.findViewById(R.id.btn_stop);
- btnPlay = (Button)this.findViewById(R.id.btn_play);
- btnFinish = (Button)this.findViewById(R.id.btn_finish);
- btnStop.setEnabled(false);
- btnPlay.setEnabled(false);
- }
- public void onClick(View v){
- int id = v.getId();
- switch(id){
- case R.id.btn_start:
- //開始錄制
- //我們需要實例化一個MediaRecorder對象,然後進行相應的設置
- recorder = new MediaRecorder();
- //指定AudioSource 為MIC(Microphone audio source ),這是最長用的
- recorder.setAudioSource(MediaRecorder.AudioSource.MIC);
- //指定OutputFormat,我們選擇3gp格式
- //其他格式,MPEG-4:這將指定錄制的文件為mpeg-4格式,可以保護Audio和Video
- //RAW_AMR:錄制原始文件,這只支持音頻錄制,同時要求音頻編碼為AMR_NB
- //THREE_GPP:錄制後文件是一個3gp文件,支持音頻和視頻錄制
- recorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
- //指定Audio編碼方式,目前只有AMR_NB格式
- recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
- //接下來我們需要指定錄制後文件的存儲路徑
- File fpath = new File(Environment.getExternalStorageDirectory().getAbsolutePath()+"/data/files/");
- fpath.mkdirs();//創建文件夾
- try {
- //創建臨時文件
- audioFile = File.createTempFile("recording", ".3gp", fpath);
- } catch (IOException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- recorder.setOutputFile(audioFile.getAbsolutePath());
- //下面就開始錄制了
- try {
- recorder.prepare();
- } catch (IllegalStateException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- } catch (IOException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- recorder.start();
- stateView.setText("正在錄制");
- btnStart.setEnabled(false);
- btnPlay.setEnabled(false);
- btnStop.setEnabled(true);
- break;
- case R.id.btn_stop:
- recorder.stop();
- recorder.release();
- //然後我們可以將我們的錄制文件存儲到MediaStore中
- ContentValues values = new ContentValues();
- values.put(MediaStore.Audio.Media.TITLE, "this is my first record-audio");
- values.put(MediaStore.Audio.Media.DATE_ADDED, System.currentTimeMillis());
- values.put(MediaStore.Audio.Media.DATA, audioFile.getAbsolutePath());
- fileUri = this.getContentResolver().insert(MediaStore.Audio.Media.EXTERNAL_CONTENT_URI, values);
- //錄制結束後,我們實例化一個MediaPlayer對象,然後准備播放
- player = new MediaPlayer();
- player.setOnCompletionListener(new MediaPlayer.OnCompletionListener() {
- @Override
- public void onCompletion(MediaPlayer arg0) {
- //更新狀態
- stateView.setText("准備錄制");
- btnPlay.setEnabled(true);
- btnStart.setEnabled(true);
- btnStop.setEnabled(false);
- }
- });
- //准備播放
- try {
- player.setDataSource(audioFile.getAbsolutePath());
- player.prepare();
- } catch (IllegalArgumentException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- } catch (IllegalStateException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- } catch (IOException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- //更新狀態
- stateView.setText("准備播放");
- btnPlay.setEnabled(true);
- btnStart.setEnabled(true);
- btnStop.setEnabled(false);
- break;
- case R.id.btn_play:
- //播放錄音
- //注意,我們在錄音結束的時候,已經實例化了MediaPlayer,做好了播放的准備
- player.start();
- //更新狀態
- stateView.setText("正在播放");
- btnStart.setEnabled(false);
- btnStop.setEnabled(false);
- btnPlay.setEnabled(false);
- //在播放結束的時候也要更新狀態
- break;
- case R.id.btn_finish:
- //完成錄制,返回錄制的音頻的Uri
- Intent intent = new Intent();
- intent.setData(fileUri);
- this.setResult(RESULT_OK, intent);
- this.finish();
- break;
- }
- }
- }
登錄應用程序的屏幕,詢問憑據登錄到一些特定的應用。可能需要登錄到Facebook,微博等本章介紹了,如何創建一個登錄界面,以及如何管理安全問題和錯誤嘗試。首先,必須定義兩
本文實例講述了Android實現兩個ScrollView互相聯動的同步滾動效果代碼。分享給大家供大家參考,具體如下: 最近在做一個項目,用到了兩個ScrollVi
本文給大家講解下Android文件選擇器的使用。實際上就是獲取用戶在SD卡中選擇的文件或文件夾的路
可以顯示在的Android任務,通過加載進度條的進展。進度條有兩種形狀。加載欄和加載微調(spinner)。在本章中,我們將討論微調(spinner)。Spinner 用