5

AudioManager を使用して、通話が行われる直前にイヤホンからサウンドを再生しているので、AudioManager setMode(MODE_IN_CALL) を使用します。

音楽を正しく再生した後、着信音が非常に歪んで非常にうるさいように聞こえるGalaxy S3を除いて、問題はありません。setMode のドキュメントを読みました:

The audio mode encompasses audio routing AND the behavior of the telephony 
layer. Therefore this method should only be used by applications that replace
the platform-wide management of audio settings or the main telephony application.
In particular, the MODE_IN_CALL mode should only be used by the telephony
application when it places a phone call, as it will cause signals from the 
radio layer to feed the platform mixer.

したがって、無線レイヤーのフィード プラットフォーム ミキサーからの信号があるのではないかと思います。

だから私が使用しているコードは次のようなものです:

am = (AudioManager) context.getSystemService(Context.AUDIO_SERVICE);
speakerWasOn = am.isSpeakerphoneOn();
speakerPrevMode = am.getMode();
bthA2dpWasOn = am.isBluetoothA2dpOn();
bthScoWasOn = am.isBluetoothScoOn();

if (BluetoothBR.bthOn && BluetoothBR.conectarBluetooth()) {
  am.setMode(AudioManager.STREAM_VOICE_CALL);
  am.setBluetoothA2dpOn(true);
  am.setBluetoothScoOn(true);

} else {
  am.setSpeakerphoneOn(false);
  am.setMode(AudioManager.MODE_IN_CALL);
}

次に、MediaPlayer を使用して、別のスレッドで .mp3 ファイルを再生します。

private OnPreparedListener opl = new OnPreparedListener() {
  public void onPrepared(MediaPlayer mp) {
    try {
      mp.setVolume(1.0f, 1.0f);
      mp.start();

    } catch (Throwable e) {
      e.printStackTrace();
      mp.release();
    }
  }
};

private OnCompletionListener ocl = new OnCompletionListener() {
  public void onCompletion(MediaPlayer mp) {
    stop();
  }
};

public void run() {
  synchronized (mp) {
    FileInputStream fis = null;
    try {
      fis = new FileInputStream(getMp3FilePath());

      mp.setDataSource(fis.getFD());
      mp.setOnPreparedListener(opl);
      mp.setOnCompletionListener(ocl);
      mp.prepare();
      fis.close();

    } catch (Exception e) {
      mp.release();
      if (fis != null) {
        try {
          fis.close();
        } catch (IOException e1) {
          e1.printStackTrace();
        }
      }
    }
  }
}

public void stop() {
  if (mp != null) {
    try {
      mp.stop();
      mp.release();
      mp.setVolume(0.5f, 0.5f);
      mp.reset();

    } catch (Exception ignored) {
    }
  }

  if (BluetoothBR.bthOn) {
    BluetoothBR.desconectarBluetooth();
  }
}

音楽が完成したら、次のように呼び出します。

am.setSpeakerphoneOn(speakerWasOn);
am.setMode(speakerPrevMode);
am.setBluetoothA2dpOn(bthA2dpWasOn);
am.setBluetoothScoOn(bthScoWasOn);

これは Samsung Galaxy S3 (afaik) でのみ発生し、S2、Huawei、SonyEricsson などでテストされ、正しく動作します。

何か案は?ありがとう

アップデート:

音楽が終了し、AudioManager を元の状態に設定した後、スレッドが 5 秒間待機すると、すべて正常に動作することがわかりました。

am.setSpeakerphoneOn(speakerWasOn);
am.setMode(speakerPrevMode);
am.setBluetoothA2dpOn(bthA2dpWasOn);
am.setBluetoothScoOn(bthScoWasOn);

long ctime = System.currentTimeMillis();
while (System.currentTimeMillis() - ctime < 5000);
4

1 に答える 1

1

私も同じ問題を抱えていました。この行をコメントアウトしたとき

am.setMode(AudioManager.MODE_IN_CALL);

すべてがうまくいきました。

于 2013-05-23T11:36:16.057 に答える