0
How I can check in background service that MediaRecorder is occupied by another app or not ... I did apply check on MR but :(
before start recording during call when i try to start media recorder app crash ... even i did apply check before starting if (mr !=null) mr.start() else toast but not working. im doing some thing worng can anyone guide me ??
2 Antworten
+ 5
Check this sample app implementing MediaRecorder API, you can look into it and check what's missing in your code.
https://github.com/googlesamples/android-MediaRecorder/
0
okay dear ... thank you :)