Proper display of Toasts in Audio Recorder

This commit is contained in:
Bastian Kohler 2023-06-19 14:34:07 +02:00
parent 9b2d57ad37
commit 4185cb5200
3 changed files with 7 additions and 5 deletions

View File

@ -3,6 +3,7 @@ package com.example.ueberwachungssystem.Detection;
import android.content.Context;
import android.media.MediaPlayer;
import android.media.MediaRecorder;
import android.widget.Toast;
import java.io.File;
import java.io.IOException;
@ -50,6 +51,7 @@ public class AudioRecorder {
mediaRecorder.release();
mediaRecorder = null;
isRecording = false;
Toast.makeText(context, "audio recording saved", Toast.LENGTH_SHORT).show();
}
}

View File

@ -170,12 +170,12 @@ public class VideoDetector extends Detector {
@Override
public void onVideoSaved(@NonNull VideoCapture.OutputFileResults outputFileResults) {
isRecording = false;
Toast.makeText(context, "recording saved", Toast.LENGTH_SHORT).show();
Toast.makeText(context, "video recording saved", Toast.LENGTH_SHORT).show();
}
@Override
public void onError(int videoCaptureError, @NonNull String message, @Nullable Throwable cause) {
isRecording = false;
Toast.makeText(context, "recording failed", Toast.LENGTH_SHORT).show();
Toast.makeText(context, "video recording failed", Toast.LENGTH_SHORT).show();
}
}
);

View File

@ -54,13 +54,13 @@ public class MainActivity extends AppCompatActivity {
{
//vd.startDetection();
//vd.stopDetection();
//vd.startRecording();
//audioRecorder.startRecording();
vd.startRecording();
audioRecorder.startRecording();
}
else {
//vd.stopDetection();
vd.stopRecording();
//audioRecorder.stopRecording();
audioRecorder.stopRecording();
}
}
});