On-board system Noise Reduction processing

Source: Internet
Author: User

Private Audiomanager.onaudiofocuschangelistener Maudiofocuslistener = new Audiomanager.onaudiofocuschangelistener () {
public void Onaudiofocuschange (int focuschange) {
Switch (focuschange) {
Case Audiomanager.audiofocus_gain://Before Volume 1
if (Maudiomanager! = null)
Maudiomanager.setstreamvolume (Audiomanager.stream_music,
(int) (Mmaxvolum * 0.8), 0);
if (Mislossautiofocus) {
Wedriveresume ();
Mislossautiofocus = false;
}
Break

Case Audiomanager.audiofocus_loss_transient_can_duck://down tone processing-3
if (Maudiomanager! = null)
Maudiomanager.setstreamvolume (Audiomanager.stream_music,
(int) (Mmaxvolum * 0.3), 0);
Break

Case Audiomanager.audiofocus_loss_transient://Lost audio focus pause playback-2
Mislossautiofocus = true;
Wedrivepause ();
Break

Case Audiomanager.audiofocus_loss://-1
Wedrivepause ();
Break

Default
Break
}
}
};
   Request Focus
Maudiomanager = (Audiomanager) getsystemservice (Context.audio_service);

if (Maudiomanager! = null)
    Maudiomanager.requestaudiofocus (Maudiofocuslistener,audiomanager.stream_music,audiomanager.audiofocus_gain);

Discard Focus
if (Maudiomanager! = null)
Maudiomanager.abandonaudiofocus (Maudiofocuslistener);

On-board system Noise Reduction processing

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.