Re: [android-developers] Play audio during call

2012-09-02 Thread falcon74
Being a beginner with Android (both usage and hobby dev.), I found it kind-of hard to believe that it is not possible to make 'Personal Call Assistant' or 'Answering machine' type application do not exist, since these are common on Symbian and iOS side of things. On checking google play, I was

Re: [android-developers] Play audio during call

2012-09-02 Thread Kristopher Micinski
As I just said, this app will be impossible to write. kris On Sat, Sep 1, 2012 at 4:31 AM, falcon74 banibrata.du...@gmail.com wrote: Being a beginner with Android (both usage and hobby dev.), I found it kind-of hard to believe that it is not possible to make 'Personal Call Assistant' or

Re: [android-developers] Play audio during call

2012-09-02 Thread Jim Graham
On Sun, Sep 02, 2012 at 05:38:20PM -0500, Kristopher Micinski wrote: As I just said, this app will be impossible to write. Anyone want to place any bets on how many minutes (seconds?) it'll be until the next time someone asks this question? Later, --jim -- THE SCORE: ME: 2 CANCER: 0 73

Re: [android-developers] Play audio during call

2012-09-01 Thread Kristopher Micinski
On Sat, Sep 1, 2012 at 12:16 AM, Nakul Maheshri nakulmaheshr...@gmail.com wrote: I want to play audio file during call (like answering machine) i am using following code final AudioManager am; MediaPlayer mp=MediaPlayer.create(getApplicationContext(),R.raw.na);

[android-developers] Play audio during call

2012-08-31 Thread Nakul Maheshri
*I want to play audio file during call (like answering machine)* i am using following code final AudioManager am; MediaPlayer mp=MediaPlayer.create(getApplicationContext(),R.raw.na); am=(AudioManager) getSystemService(AUDIO_SERVICE); am.setSpeakerphoneOn(false);