gpt4 book ai didi

android - 无法使用 Intents 在 Android Lollipop 5.0 中进行视频通话

转载 作者:行者123 更新时间:2023-11-29 01:33:05 25 4
gpt4 key购买 nike

我正在创建一个使用 Intents 进行视频通话的应用程序,我尝试过的代码如下,

   Intent callIntent = new Intent(
"com.android.phone.videocall");
callIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
callIntent.putExtra("videocall", true);
callIntent.setData(Uri.parse("tel:" + phoneNo));
startActivity(callIntent);
delayWait(duration);

但是上面代码的问题在于,对于所有较低版本(直到 kitkat 4.4)都可以正常工作,但它在 5.0( Lollipop )版本中不起作用。请建议我一些使用 Intents 实现此目的的方法。

Error: E/com.example.menewintel.service.VideoCallService(5801): No Activity found to handle Intent { act=com.android.phone.videocall dat=tel:xxxxxxxxx flg=0x10000000 (has extras) }

最佳答案

lollipop 中的包名称已更改

尝试使用这个

"com.android.server.telecom"

关于android - 无法使用 Intents 在 Android Lollipop 5.0 中进行视频通话,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30161031/

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