How to pause the background music while recording audio in android

后端 未结 2 690
没有蜡笔的小新
没有蜡笔的小新 2021-01-28 17:42

I am developing an audio record application in android. So if any background music is already playing in the device music player, that should be paused before it starts recordin

2条回答
  •  醉话见心
    2021-01-28 18:42

    get audioManager and check

    audioManager.isMusicActive()
    

    if true

    private void toggleNativePlayer(Context context) {
        Intent intent = new Intent("com.android.music.musicservicecommand");
        intent.putExtra("command", "togglepause");
        context.sendBroadcast(intent);
    }
    

    and after you finish recording run this code again to start play musig again

提交回复
热议问题