[android-developers] Re: Mute button in call

2012-03-01 Thread brian lee
Right, as I said this code it working. The microphone is getting
muted. But there is no indication of it in the call, so if you mute it
and look at the screen you have no idea if it is muted. So I wanted to
update the button in the phone app, but I don't think that is
possible. I think my only option is to do a notification and put a
icon at the top of the screen.

On Feb 29, 11:10 pm, Jagruti Sangani jagruti.sang...@inextrix.com
wrote:
 Ok, now you had mute the call and whenever you want to comeback from mute
 that means not mute at that time you do just reverse process of this.That
 means first check is it mute if yes then make  mAudioManager.



  setMicrophoneMute(false);

 I have not tried but it might be working.







 On Wed, Feb 29, 2012 at 9:51 PM, brian lee br...@brianlee.org wrote:
  Here is the code that I am using mute within a broadcast receiver to
  capture the button:
  if(inCall==true){
                         mAudioManager =
  (AudioManager)context.getSystemService(Context.AUDIO_SERVICE);
                         if(mAudioManager.isMicrophoneMute()==true){
                                 Log.v(LOG_TAG, Unmuting Mic);
                                 Toast.makeText(context, Mic Unmuted,
  Toast.LENGTH_LONG).show();

                                 mAudioManager.setMicrophoneMute(false);

                         }
                         else{

                                 Log.v(LOG_TAG, Muting Mic);
                                 mAudioManager.setMicrophoneMute(true);
                                 Toast.makeText(context, Mic Muted,
  Toast.LENGTH_LONG).show();

                         }

  Let me know if you need any more code to understand what I am doing,
  but the above code is muting the call, just not updating the mute
  button in the phone app.

  -Brian

  On Feb 28, 11:24 pm, Jagruti Sangani jagruti.sang...@inextrix.com
  wrote:
   please put the code then and then its posssible bcz if we make the mute
  the
   call then also change the state of call.

   On Tue, Feb 28, 2012 at 2:02 AM, brian lee br...@brianlee.org wrote:
I am trying to have a app mute the call when the camera button is
pressed.

I have that part of the code working, but I can not for the life of me
figure out if there is a way to change the state of the mute button in
the call so you know that it is currently muted. Anyone know how to do
that?

-Brian

--
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to
  android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
   http://groups.google.com/group/android-developers?hl=en

  --
  You received this message because you are subscribed to the Google
  Groups Android Developers group.
  To post to this group, send email to android-developers@googlegroups.com
  To unsubscribe from this group, send email to
  android-developers+unsubscr...@googlegroups.com
  For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


[android-developers] Re: Mute button in call

2012-02-29 Thread brian lee
Here is the code that I am using mute within a broadcast receiver to
capture the button:
if(inCall==true){
mAudioManager =
(AudioManager)context.getSystemService(Context.AUDIO_SERVICE);
if(mAudioManager.isMicrophoneMute()==true){
Log.v(LOG_TAG, Unmuting Mic);
Toast.makeText(context, Mic Unmuted, 
Toast.LENGTH_LONG).show();

mAudioManager.setMicrophoneMute(false);


}
else{

Log.v(LOG_TAG, Muting Mic);
mAudioManager.setMicrophoneMute(true);
Toast.makeText(context, Mic Muted, 
Toast.LENGTH_LONG).show();

}

Let me know if you need any more code to understand what I am doing,
but the above code is muting the call, just not updating the mute
button in the phone app.

-Brian


On Feb 28, 11:24 pm, Jagruti Sangani jagruti.sang...@inextrix.com
wrote:
 please put the code then and then its posssible bcz if we make the mute the
 call then also change the state of call.







 On Tue, Feb 28, 2012 at 2:02 AM, brian lee br...@brianlee.org wrote:
  I am trying to have a app mute the call when the camera button is
  pressed.

  I have that part of the code working, but I can not for the life of me
  figure out if there is a way to change the state of the mute button in
  the call so you know that it is currently muted. Anyone know how to do
  that?

  -Brian

  --
  You received this message because you are subscribed to the Google
  Groups Android Developers group.
  To post to this group, send email to android-developers@googlegroups.com
  To unsubscribe from this group, send email to
  android-developers+unsubscr...@googlegroups.com
  For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] Re: Mute button in call

2012-02-29 Thread Jagruti Sangani
Ok, now you had mute the call and whenever you want to comeback from mute
that means not mute at that time you do just reverse process of this.That
means first check is it mute if yes then make  mAudioManager.

 setMicrophoneMute(false);

I have not tried but it might be working.


On Wed, Feb 29, 2012 at 9:51 PM, brian lee br...@brianlee.org wrote:

 Here is the code that I am using mute within a broadcast receiver to
 capture the button:
 if(inCall==true){
mAudioManager =
 (AudioManager)context.getSystemService(Context.AUDIO_SERVICE);
if(mAudioManager.isMicrophoneMute()==true){
Log.v(LOG_TAG, Unmuting Mic);
Toast.makeText(context, Mic Unmuted,
 Toast.LENGTH_LONG).show();

mAudioManager.setMicrophoneMute(false);


}
else{

Log.v(LOG_TAG, Muting Mic);
mAudioManager.setMicrophoneMute(true);
Toast.makeText(context, Mic Muted,
 Toast.LENGTH_LONG).show();

}

 Let me know if you need any more code to understand what I am doing,
 but the above code is muting the call, just not updating the mute
 button in the phone app.

 -Brian


 On Feb 28, 11:24 pm, Jagruti Sangani jagruti.sang...@inextrix.com
 wrote:
  please put the code then and then its posssible bcz if we make the mute
 the
  call then also change the state of call.
 
 
 
 
 
 
 
  On Tue, Feb 28, 2012 at 2:02 AM, brian lee br...@brianlee.org wrote:
   I am trying to have a app mute the call when the camera button is
   pressed.
 
   I have that part of the code working, but I can not for the life of me
   figure out if there is a way to change the state of the mute button in
   the call so you know that it is currently muted. Anyone know how to do
   that?
 
   -Brian
 
   --
   You received this message because you are subscribed to the Google
   Groups Android Developers group.
   To post to this group, send email to
 android-developers@googlegroups.com
   To unsubscribe from this group, send email to
   android-developers+unsubscr...@googlegroups.com
   For more options, visit this group at
  http://groups.google.com/group/android-developers?hl=en

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en