gpt4 book ai didi

java - 调用 Intent.ACTION_CALL 时出现 ActivityNotFoundException

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:48:50 24 4
gpt4 key购买 nike

我在执行 Intent.ACTION_CALL 操作时得到 ActivityNotFoundException。我找到了很多链接,但所有链接都无法解决我的问题。

它有时会给我异常

android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.CALL dat=tel:xxx-xxx-xxxx pkg=com.android.phone (has extras) }

我在我的项目中使用了以下代码

String contact_number="123456789";
Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:" + contact_number));
startActivity(callIntent);

最佳答案

不能保证可以处理给定的 Intent (即平板电脑可能根本没有电话应用程序)。如果没有匹配intent-filter 的应用程序,那么您将面临ActivityNotFoundException。正确的方法是意识到这一点并使用 try/catch 来阻止崩溃并正确恢复:

try {
String contact_number="123456789";
Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:" + contact_number));
startActivity(callIntent);
} catch (Exception e) {
// no activity to handle intent. show error dialog/toast whatever
}

此外,您应该改用 ACTION_DIAL,因为 ACTION_CALL 需要额外的权限。

关于java - 调用 Intent.ACTION_CALL 时出现 ActivityNotFoundException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28146443/

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