当前位置: 首页>>代码示例>>Java>>正文


Java AudioManager.isBluetoothScoOn方法代码示例

本文整理汇总了Java中android.media.AudioManager.isBluetoothScoOn方法的典型用法代码示例。如果您正苦于以下问题:Java AudioManager.isBluetoothScoOn方法的具体用法?Java AudioManager.isBluetoothScoOn怎么用?Java AudioManager.isBluetoothScoOn使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在android.media.AudioManager的用法示例。


在下文中一共展示了AudioManager.isBluetoothScoOn方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: handleWiredHeadsetChange

import android.media.AudioManager; //导入方法依赖的package包/类
private void handleWiredHeadsetChange(Intent intent) {
  Log.w(TAG, "handleWiredHeadsetChange...");

  if (callState == CallState.STATE_CONNECTED ||
          callState == CallState.STATE_DIALING   ||
          callState == CallState.STATE_REMOTE_RINGING)
  {
    AudioManager audioManager = ServiceUtil.getAudioManager(this);
    boolean      present      = intent.getBooleanExtra(EXTRA_AVAILABLE, false);

    if (present && audioManager.isSpeakerphoneOn()) {
      audioManager.setSpeakerphoneOn(false);
      audioManager.setBluetoothScoOn(false);
    } else if (!present && !audioManager.isSpeakerphoneOn() && !audioManager.isBluetoothScoOn() && localVideoEnabled) {
      audioManager.setSpeakerphoneOn(true);
    }

    if (recipient != null) {
      sendMessage(viewModelStateFor(callState), recipient, localVideoEnabled, remoteVideoEnabled, bluetoothAvailable, microphoneEnabled);
    }
  }
}
 
开发者ID:XecureIT,项目名称:PeSanKita-android,代码行数:23,代码来源:WebRtcCallService.java

示例2: isBluetoothAvailable

import android.media.AudioManager; //导入方法依赖的package包/类
private boolean isBluetoothAvailable() {
    try {
        synchronized (LOCK) {
            AudioManager audioManager = ServiceUtil.getAudioManager(context);

            if (bluetoothAdapter == null || !bluetoothAdapter.isEnabled()) return false;
            if (!audioManager.isBluetoothScoAvailableOffCall())            return false;

            if (Build.VERSION.SDK_INT >= 11) {
                return bluetoothHeadset != null && !bluetoothHeadset.getConnectedDevices().isEmpty();
            } else {
                return audioManager.isBluetoothScoOn() || audioManager.isBluetoothA2dpOn();
            }
        }
    } catch (Exception e) {
        Log.w(TAG, e);
        return false;
    }
}
 
开发者ID:XecureIT,项目名称:PeSanKita-android,代码行数:20,代码来源:BluetoothStateManager.java

示例3: stop

import android.media.AudioManager; //导入方法依赖的package包/类
public void stop(boolean playDisconnected) {
    AudioManager audioManager = ServiceUtil.getAudioManager(context);

    incomingRinger.stop();
    outgoingRinger.stop();

    if (playDisconnected) {
        soundPool.play(disconnectedSoundId, 1.0f, 1.0f, 0, 0, 1.0f);
    }

    if (audioManager.isBluetoothScoOn()) {
        audioManager.setBluetoothScoOn(false);
        audioManager.stopBluetoothSco();
    }

    audioManager.setSpeakerphoneOn(false);
    audioManager.setMicrophoneMute(false);
    audioManager.setMode(AudioManager.MODE_NORMAL);
    audioManager.abandonAudioFocus(null);
}
 
开发者ID:XecureIT,项目名称:PeSanKita-android,代码行数:21,代码来源:SignalAudioManager.java

示例4: updateAudioState

import android.media.AudioManager; //导入方法依赖的package包/类
public void updateAudioState(boolean isBluetoothAvailable) {
  AudioManager audioManager = ServiceUtil.getAudioManager(getContext());

  if (!isBluetoothAvailable) {
    bluetoothButton.setVisibility(View.GONE);
  } else {
    bluetoothButton.setVisibility(View.VISIBLE);
  }

  if (audioManager.isBluetoothScoOn()) {
    bluetoothButton.setChecked(true);
    speakerButton.setChecked(false);
  } else if (audioManager.isSpeakerphoneOn()) {
    speakerButton.setChecked(true);
    bluetoothButton.setChecked(false);
  } else {
    speakerButton.setChecked(false);
    bluetoothButton.setChecked(false);
  }
}
 
开发者ID:XecureIT,项目名称:PeSanKita-android,代码行数:21,代码来源:WebRtcCallControls.java

示例5: execute

import android.media.AudioManager; //导入方法依赖的package包/类
@Override
public void execute(AudioManager audioManager) {
    if (voiceMediator.isBlueToothHeadSet()) {
        if (!voiceMediator.isSuportA2DP()) {
            if (audioManager.getMode() != AudioManager.MODE_NORMAL) {
                Log.e(TAG, "playInChannel>>setMode(AudioManager.MODE_NORMAL)");
                audioManager.setMode(AudioManager.MODE_NORMAL);
            }
            if (audioManager.isBluetoothScoOn()) {
                audioManager.setBluetoothScoOn(false);
                audioManager.stopBluetoothSco();
            }
        } else {
            if (!audioManager.isBluetoothA2dpOn()) {
                Log.e(TAG, "playInChannel>>setBluetoothA2dpOn(true)");
                audioManager.setBluetoothA2dpOn(true);
            }
        }
    }
}
 
开发者ID:LingjuAI,项目名称:AssistantBySDK,代码行数:21,代码来源:AssistantService.java

示例6: handleWiredHeadsetChange

import android.media.AudioManager; //导入方法依赖的package包/类
private void handleWiredHeadsetChange(Intent intent) {
  Log.w(TAG, "handleWiredHeadsetChange...");

  if (callState == CallState.STATE_CONNECTED ||
      callState == CallState.STATE_DIALING   ||
      callState == CallState.STATE_REMOTE_RINGING)
  {
    AudioManager audioManager = ServiceUtil.getAudioManager(this);
    boolean      present      = intent.getBooleanExtra(EXTRA_AVAILABLE, false);

    if (present && audioManager.isSpeakerphoneOn()) {
      audioManager.setSpeakerphoneOn(false);
      audioManager.setBluetoothScoOn(false);
    } else if (!present && !audioManager.isSpeakerphoneOn() && !audioManager.isBluetoothScoOn() && localVideoEnabled) {
      audioManager.setSpeakerphoneOn(true);
    }

    if (recipient != null) {
      sendMessage(viewModelStateFor(callState), recipient, localVideoEnabled, remoteVideoEnabled, bluetoothAvailable, microphoneEnabled);
    }
  }
}
 
开发者ID:CableIM,项目名称:Cable-Android,代码行数:23,代码来源:WebRtcCallService.java

示例7: isBluetoothAvailable

import android.media.AudioManager; //导入方法依赖的package包/类
private boolean isBluetoothAvailable() {
  try {
    synchronized (LOCK) {
      AudioManager audioManager = ServiceUtil.getAudioManager(context);

      if (bluetoothAdapter == null || !bluetoothAdapter.isEnabled()) return false;
      if (!audioManager.isBluetoothScoAvailableOffCall())            return false;

      if (Build.VERSION.SDK_INT >= 11) {
        return bluetoothHeadset != null && !bluetoothHeadset.getConnectedDevices().isEmpty();
      } else {
        return audioManager.isBluetoothScoOn() || audioManager.isBluetoothA2dpOn();
      }
    }
  } catch (Exception e) {
    Log.w(TAG, e);
    return false;
  }
}
 
开发者ID:CableIM,项目名称:Cable-Android,代码行数:20,代码来源:BluetoothStateManager.java

示例8: startIncomingRinger

import android.media.AudioManager; //导入方法依赖的package包/类
public void startIncomingRinger() {
  AudioManager audioManager = ServiceUtil.getAudioManager(context);
  boolean      speaker      = !audioManager.isWiredHeadsetOn() && !audioManager.isBluetoothScoOn();

  audioManager.setMode(AudioManager.MODE_RINGTONE);
  audioManager.setMicrophoneMute(false);
  audioManager.setSpeakerphoneOn(speaker);

  incomingRinger.start();
}
 
开发者ID:CableIM,项目名称:Cable-Android,代码行数:11,代码来源:SignalAudioManager.java

示例9: stop

import android.media.AudioManager; //导入方法依赖的package包/类
public void stop(boolean playDisconnected) {
  AudioManager audioManager = ServiceUtil.getAudioManager(context);

  incomingRinger.stop();
  outgoingRinger.stop();

  if (playDisconnected) {
    soundPool.play(disconnectedSoundId, 1.0f, 1.0f, 0, 0, 1.0f);
  }

  if (audioManager.isBluetoothScoOn()) {
    audioManager.setBluetoothScoOn(false);
    audioManager.stopBluetoothSco();
  }

  audioManager.setSpeakerphoneOn(false);
  audioManager.setMicrophoneMute(false);
  audioManager.setMode(AudioManager.MODE_NORMAL);
  audioManager.abandonAudioFocus(null);
}
 
开发者ID:CableIM,项目名称:Cable-Android,代码行数:21,代码来源:SignalAudioManager.java

示例10: updateAudioState

import android.media.AudioManager; //导入方法依赖的package包/类
public void updateAudioState(boolean isBluetoothAvailable) {
  AudioManager audioManager = ServiceUtil.getAudioManager(getContext());

  if (!isBluetoothAvailable) {
    bluetoothButton.setVisibility(View.GONE);
  } else {
    bluetoothButton.setVisibility(View.VISIBLE);
  }

  if (audioManager.isBluetoothScoOn()) {
    bluetoothButton.setChecked(true, false);
    speakerButton.setChecked(false, false);
  } else if (audioManager.isSpeakerphoneOn()) {
    speakerButton.setChecked(true, false);
    bluetoothButton.setChecked(false, false);
  } else {
    speakerButton.setChecked(false, false);
    bluetoothButton.setChecked(false, false);
  }
}
 
开发者ID:CableIM,项目名称:Cable-Android,代码行数:21,代码来源:WebRtcCallControls.java

示例11: handleSetMuteVideo

import android.media.AudioManager; //导入方法依赖的package包/类
private void handleSetMuteVideo(Intent intent) {
  AudioManager audioManager = ServiceUtil.getAudioManager(this);
  boolean      muted        = intent.getBooleanExtra(EXTRA_MUTE, false);

  this.localVideoEnabled = !muted;

  if (this.peerConnection != null) {
    this.peerConnection.setVideoEnabled(this.localVideoEnabled);
  }

  if (this.callId != null && this.dataChannel != null) {
    this.dataChannel.send(new DataChannel.Buffer(ByteBuffer.wrap(Data.newBuilder()
                                                                     .setVideoStreamingStatus(WebRtcDataProtos.VideoStreamingStatus.newBuilder()
                                                                                                                                   .setId(this.callId)
                                                                                                                                   .setEnabled(localVideoEnabled))
                                                                     .build().toByteArray()), false));
  }

  if (callState == CallState.STATE_CONNECTED) {
    if (localVideoEnabled) this.lockManager.updatePhoneState(LockManager.PhoneState.IN_VIDEO);
    else                   this.lockManager.updatePhoneState(LockManager.PhoneState.IN_CALL);
  }

  if (localVideoEnabled && !audioManager.isSpeakerphoneOn() && !audioManager.isBluetoothScoOn()) {
    audioManager.setSpeakerphoneOn(true);
  }

  sendMessage(viewModelStateFor(callState), this.recipient, localVideoEnabled, remoteVideoEnabled, bluetoothAvailable, microphoneEnabled);
}
 
开发者ID:XecureIT,项目名称:PeSanKita-android,代码行数:30,代码来源:WebRtcCallService.java

示例12: startIncomingRinger

import android.media.AudioManager; //导入方法依赖的package包/类
public void startIncomingRinger() {
    AudioManager audioManager = ServiceUtil.getAudioManager(context);
    boolean      speaker      = !audioManager.isWiredHeadsetOn() && !audioManager.isBluetoothScoOn();

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
        audioManager.setMode(AudioManager.MODE_IN_COMMUNICATION);
    } else {
        audioManager.setMode(AudioManager.MODE_IN_CALL);
    }

    audioManager.setMicrophoneMute(false);
    audioManager.setSpeakerphoneOn(speaker);

    incomingRinger.start(speaker);
}
 
开发者ID:XecureIT,项目名称:PeSanKita-android,代码行数:16,代码来源:SignalAudioManager.java

示例13: onSpeakerChange

import android.media.AudioManager; //导入方法依赖的package包/类
@Override
public void onSpeakerChange(boolean isSpeaker) {
  AudioManager audioManager = ServiceUtil.getAudioManager(WebRtcCallActivity.this);
  audioManager.setSpeakerphoneOn(isSpeaker);

  if (isSpeaker && audioManager.isBluetoothScoOn()) {
    audioManager.stopBluetoothSco();
    audioManager.setBluetoothScoOn(false);
  }
}
 
开发者ID:XecureIT,项目名称:PeSanKita-android,代码行数:11,代码来源:WebRtcCallActivity.java

示例14: obtainAudioType

import android.media.AudioManager; //导入方法依赖的package包/类
@Override
public String obtainAudioType(Context context) {
  AudioManager audioManager = (AudioManager) context.getSystemService(Context.AUDIO_SERVICE);
  if (audioManager.isBluetoothScoOn()) {
    return BLUETOOTH;
  } else {
    return chain.obtainAudioType(context);
  }
}
 
开发者ID:mapbox,项目名称:mapbox-events-android,代码行数:10,代码来源:BluetoothAudioType.java

示例15: handleSetMuteVideo

import android.media.AudioManager; //导入方法依赖的package包/类
private void handleSetMuteVideo(Intent intent) {
  AudioManager audioManager = ServiceUtil.getAudioManager(this);
  boolean      muted        = intent.getBooleanExtra(EXTRA_MUTE, false);

  this.localVideoEnabled = !muted;

  if (this.peerConnection != null) {
    this.peerConnection.setVideoEnabled(this.localVideoEnabled);
  }

  if (this.callId != null && this.dataChannel != null) {
    this.dataChannel.send(new DataChannel.Buffer(ByteBuffer.wrap(Data.newBuilder()
                                                                     .setVideoStreamingStatus(WebRtcDataProtos.VideoStreamingStatus.newBuilder()
                                                                                                                                   .setId(this.callId)
                                                                                                                                   .setEnabled(localVideoEnabled))
                                                                     .build().toByteArray()), false));
  }

  if (callState == CallState.STATE_CONNECTED) {
    if (localVideoEnabled) this.lockManager.updatePhoneState(LockManager.PhoneState.IN_VIDEO);
    else                   this.lockManager.updatePhoneState(LockManager.PhoneState.IN_CALL);
  }

  if (localVideoEnabled &&
      !audioManager.isSpeakerphoneOn() &&
      !audioManager.isBluetoothScoOn() &&
      !audioManager.isWiredHeadsetOn())
  {
    audioManager.setSpeakerphoneOn(true);
  }

  sendMessage(viewModelStateFor(callState), this.recipient, localVideoEnabled, remoteVideoEnabled, bluetoothAvailable, microphoneEnabled);
}
 
开发者ID:CableIM,项目名称:Cable-Android,代码行数:34,代码来源:WebRtcCallService.java


注:本文中的android.media.AudioManager.isBluetoothScoOn方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。