Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个应用程序,当我单击活动中的数字时,它应该拨打电话但不应该隐藏我的活动。我想在后台拨打电话并将其显示在通知栏中。有什么办法吗?
检查此对话以了解在呼叫方面什么是可能的,什么是不可能的
根据此对话,如果没有在您的活动顶部打开呼叫屏幕,则无法拨打电话。
实际上我找到了解决方案,但不是通过服务。我们必须扩展“PhoneStateListener”并需要在“TelephonyManager.CALL_STATE_RINGING”中启动 Activity,它起作用了,呼叫显示通知栏而不是呼叫打开屏幕。