gpt4 book ai didi

android - 通过 Intent 与扬声器开始通话

转载 作者:行者123 更新时间:2023-12-05 00:22:02 25 4
gpt4 key购买 nike

我有一项服务可以在发生事情时开始通话,效果很好,但我的问题是如何在扬声器打开的情况下启动它?(2分钟后移除扬声器?)

根据你所有的回答,

这段代码应该可以工作 -

                Intent intent = new Intent(Intent.ACTION_CALL);
intent.setData(Uri.parse("tel:" + num));
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addFlags(Intent.FLAG_FROM_BACKGROUND);// (i'm starting the call from service..)
startActivity(intent); //the call start here, work perfect
AudioManager audioManager = (AudioManager) getSystemService(Context.AUDIO_SERVICE);
audioManager.setMode(AudioManager.MODE_IN_CALL);
audioManager.setSpeakerphoneOn(true);

好吧,它不起作用..为什么?

最佳答案

AudioManager audioManager = (AudioManager) getSystemService(Context.AUDIO_SERVICE);
audioManager.setMode(AudioManager.MODE_IN_CALL);
audioManager.setSpeakerphoneOn(true);

接听电话后,使用此功能打开扬声器。

前提
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />

注册 PhoneStateListener知道何时接听电话。
当通话状态为 TelephonyManager.CALL_STATE_OFFHOOK 时打开扬声器
AudioManager audioManager = (AudioManager) getSystemService(Context.AUDIO_SERVICE);
audioManager.setSpeakerphoneOn(false);
audioManager.setMode(AudioManager.MODE_NORMAL);

关于android - 通过 Intent 与扬声器开始通话,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30571010/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com