Remainder In Android Application?
Solution 1:
Try Following links it may help you
use alarm manager calling the service.
Don,t forget to call the service in android manifest.xml
Solution 2:
It seems like you haven't really looked into this and while I'm not going to post every single bit of code you need to make the app I can point you in the right direction.
First of all I would look at the developer guide to have a base understanding of how audio recording works within android. You can find a link below to the Google developer guidelines.
http://developer.android.com/guide/topics/media/audio-capture.html
The next is a tutorial on how to record audio. What you can do is create an activity or fragment that implements this code.
http://www.tutorialspoint.com/android/android_audio_capture.html
The last link is another tutorial on how to capture audio but also shows you how to implement audio playback which I'm sure is another feature you will want to implement
One you have done the playback tutorial you can then implement alarm manager to play audio at a particular time on a particular day. Link is below
http://www.vogella.com/tutorials/AndroidTaskScheduling/article.html
I hope this helps you get on the right track.
Post a Comment for "Remainder In Android Application?"