通过我们的自定义协议使用telecomManager

时间:2018-12-20 12:09:57

标签: android video phone-call android-phone-call

我正在尝试通过以下指南实现与电信服务的互连:https://developer.android.com/guide/topics/connectivity/telecom/

我已经可以在没有电信服务的情况下显示自己的全屏来电UI,进行和接收视频通话。我要使用Telecomservice做的所有事情,只是告诉Android OS,我们的应用程序正在特定时刻开始/停止视频通话,并接收来自其他正在调用的应用程序的通话保留/未保留事件。

主要问题是:

1)在传入呼叫的​​情况下,addNewIncomingCall不会执行任何操作:不会触发onCreateIncomingConnection回调(甚至根本不会触发我的ConnectionService的onCreate回调)。为什么未启动连接服务?

2)在拨出电话的情况下placeCall尝试使用我们的用户ID打开系统调用应用,将其作为电话或SIP号码进行呼叫。我可以在没有系统界面的情况下使用placeCall吗?

或者,如果我只想通知系统有关视频通话的信息​​,可以使用TelecomService以外的其他选项吗?

创建的连接如下:

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        connection?.connectionProperties = Connection.PROPERTY_SELF_MANAGED
    }
    connection?.connectionCapabilities = Connection.CAPABILITY_HOLD and Connection.CAPABILITY_SUPPORT_HOLD
    connection?.setVideoState(VideoProfile.STATE_BIDIRECTIONAL)

打入电话:

val telecomService = context.getSystemService(Context.TELECOM_SERVICE) as TelecomManager
                    try {
                        val uri = Uri.fromParts(PhoneAccount.SCHEME_SIP, teacherInfo.name, null)
                        telecomService.placeCall(uri, Bundle.EMPTY)
                    } catch (e: Throwable) {
                        e.printStackTrace()
                    }

接听电话:

val telecomService = applicationContext.getSystemService(Context.TELECOM_SERVICE) as TelecomManager
                      try {
                          Log.d("VideoCOnnection", "addNewIncomingCall")
                          telecomService.addNewIncomingCall(CallUtils.getAccountConnection(telecomService), Bundle.EMPTY)
                      } catch (e: Throwable) {
                          Log.d("VideoCOnnection", "crash")
                          e.printStackTrace()
                      }


@SuppressLint("MissingPermission")
fun getAccountConnection(teleconManager: TelecomManager) : PhoneAccountHandle? {
    return if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
        val enabledAccounts = teleconManager.callCapablePhoneAccounts
        for(account in enabledAccounts) {
            if(account.componentName.className.equals(BindTelecomService::class.java.canonicalName)) {
                return account
            }
        }
        return null
    } else
        null
}

2 个答案:

答案 0 :(得分:0)

好像您想使用self-managed connection service来实现该应用。

检查您是否具有权限:

  • MANAGE_OWN_CALLS
  • READ_CALL_LOG
  • READ_PHONE_STATE

使用CAPABILITY_SELF_MANAGED注册电话帐户。

final String phoneAccountLabel = "myPhoneApp";

ComponentName connectionServiceName = new ComponentName(context.getApplicationContext(), TcService.class);
accountHandle = new PhoneAccountHandle(connectionServiceName, phoneAccountLabel);

PhoneAccount phoneAccount = telecom.getPhoneAccount(accountHandle);
if (phoneAccount == null) {
    PhoneAccount.Builder builder = PhoneAccount.builder(accountHandle, phoneAccountLabel);
    builder.setCapabilities(PhoneAccount.CAPABILITY_SELF_MANAGED);
    phoneAccount = builder.build();
    telecom.registerPhoneAccount(phoneAccount);
}

添加新的来电或去电时,必须添加额外的EXTRA_PHONE_ACCOUNT_HANDLE。

Uri uri = generateCallUri();
extras.putParcelable(TelecomManager.EXTRA_PHONE_ACCOUNT_HANDLE, accountHandle);
telecom.addNewIncomingCall(accountHandle, extras);

答案 1 :(得分:0)

https://github.com/pranksterN1/TComTest https://stackoverflow.com/users/4466771/prankstern1发布了此示例,该示例虽然有效,但仍然找不到我的代码有什么问题:) 其他服务(例如来自示例的CallService)仅用于连接侦听,并且可以用GreenRobot的eventbus或Rx代替以简化操作