关于 Android 手机拨打电话
我想要进行简单的通话应用程序。
我使用此代码。
Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:13643569345"));
startActivity(intent);
它运行良好,但我不想使用startActivity
。它更改系统默认调用活动的活动。
如何在不使用 startActivity()
的情况下进行调用?
I want make simple call app.
I use this code.
Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:13643569345"));
startActivity(intent);
It does work well, but I don't want to use startActivity
. it changes activity which system default call activity.
How can I call without using startActivity()
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能。除了通过自定义固件之外,无法通过
startActivity()
发起电话呼叫。You can't. There is no means to initiate a phone call except via
startActivity()
, except via custom firmware.