modified output filename and location of voice recorder

This commit is contained in:
Christian Schneppe 2016-06-25 20:26:12 +02:00
parent bcdccd00a2
commit a163ddf898

View file

@ -114,7 +114,7 @@ public class RecordingActivity extends Activity implements View.OnClickListener
private File getOutputFile() {
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyyMMdd_HHmmssSSS", Locale.US);
return new File(Environment.getExternalStorageDirectory().getAbsolutePath().toString()
+ "/Pix-Art Messenger/Recording"
+ "/Pix-Art Messenger/audios/"
+ dateFormat.format(new Date())
+ ".m4a");
}