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.
我有一个混合的 PhoneGap 应用程序,它允许用户拨打电话号码。这切换到电话应用程序。当用户结束通话时,他被困在电话应用程序中,并且期望的行为是自动返回到实际应用程序。这可能吗?
而不是使用 tel: 意图,您必须使用 telprompt 意图。这会提示用户他将要拨打的号码,并可选择拨打或取消。例子:
window.location = 'telprompt://' + phoneNumber
当用户挂断时,他会返回到应用程序。