我正在尝试使用 Intent 启动呼叫操作,但得到
No Activity found to handle Intent { act=android.intent.action.CALL dat=tel:xxxxxxxxxxxxx flg=0x10000000 }
谷歌像素崩溃。它适用于所有其他设备。我正在使用的代码是
public static void call(String phone,@NonNull Context context) {
Intent callIntent = new Intent(Intent.ACTION_CALL)
.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
callIntent.setData(Uri.parse("tel:" + phone));
context.startActivity(callIntent);
}
还有其他人面临类似问题吗?有什么解决办法吗?