如何拨打不显示Android系统视图的电话?
我想通过下面的代码拨打电话:
Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:123456789"));
startActivity(intent);
但是,当我使用这些代码拨打电话时,android将显示系统视图,而我看不到我的视图。如何隐藏系统视图并只显示我的观点?谢谢 !
I want to make a phone call and by the code below:
Intent intent = new Intent(Intent.ACTION_CALL, Uri.parse("tel:123456789"));
startActivity(intent);
however, when I use those code to make a phone call, the android will show the system view and I don't see my view.How can I hide the system view and only show my view? Thank you !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
拨打电话时将始终显示通话中屏幕。如果您不希望这样,您将需要创建自己的修改固件并在您自己的设备上运行它。
Placing a call will always bring up the in-call screen. If you do not want that, you will need to create your own modified firmware and run it on your own devices.