Androidスタジオでボイスレコーダーを作成しましたが、電話で録音したファイルが見つかりません。通常、送信される電子メールに添付することを意図していますが、添付ファイルとして追加するために携帯電話で見つけることができません。これは以下に記述された私のコードです
private String outputFile = null;
private MediaRecorder mRecorder;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_home);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
outputFile = Environment.getExternalStorageDirectory().getAbsolutePath() + "/recording.3gpp";
}
public void startRecording() throws Exception {
if(mRecorder!=null){
mRecorder.release();
}
File fileOut = new File(outputFile);
if(fileOut!=null){
fileOut.delete();
}
mRecorder = new MediaRecorder();
mRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
mRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
mRecorder.setOutputFile(outputFile);
mRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
mRecorder.prepare();
mRecorder.start();
}
public void stopRecording() {
if(mRecorder != null) {
mRecorder.stop();
mRecorder.release();
}
}
public void record(){
new CountDownTimer(10000, 10000) { // 5000 = 5 sec
public void onTick(long millisUntilFinished) {
try {
startRecording();
} catch (Exception e) {
e.printStackTrace();
}
Toast.makeText(HomeActivity.this, R.string.record_audio, Toast.LENGTH_LONG).show();
}
public void onFinish() {
stopRecording();
mProgressDialog.dismiss();
Toast.makeText(HomeActivity.this, R.string.record_saved, Toast.LENGTH_LONG).show();
}
}.start();
}