Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to implement a notification system for android OS based on sound, for example, when a specific sound is heard by system then a notification must be triggered. Hope, someone can take me further.

Thanking in advance.

share|improve this question
Hi, welcome on SO! What have you tried? Do you have a specific question/problem/bug/error? Can you show us a short portion of code that reproduces that problem? (Basically: many here will be happy to help with a specific problem, but we will just not write your code for you...) – Pascal MARTIN May 20 '12 at 10:10
Do you mean a sound with a specific ID, or the actual sound? (like, recognizing the sound) – Keyser May 20 '12 at 10:13
thanks Martin, actually, i've gone through how android notification system works,and found - // Create Notifcation Notification notification = new Notification(R.drawable.icon, "notification", System.currentTimeMillis()); but i want to Create Notifcation when the sound is heard by system from background – user1068818 May 20 '12 at 10:15
Hi Keyser, yes, system has to recognize the sound then trigger notification – user1068818 May 20 '12 at 10:19
This is a very large tasks and there some advanced programs within sound recognition (like Siri for iPhone) that I guess took a lot of time and developers to create. However here is a answer with how you record with the mic stackoverflow.com/a/6291854/1302697. From there i guess you have to compare the output file against sounds that you have pre-recorded. Here is a topic on that stackoverflow.com/questions/471165/… – Eri May 20 '12 at 11:01
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.