首页 > 解决方案 > 直接打开标准拨号器,无需使用意图选择器

问题描述

是否可以直接打开android拨号器。标准解决方案(通过 Intent.ACTION_DIAL)不适合我,因为它创建了意图选择器,并且还有其他拨号器应用程序,例如 viber。有什么解决办法吗?

标签: android

解决方案


Unfortunately there is no way to directly open the dialer because you cant tell all the dialers package names on all the vendors, for instance a Xiaomi dialer would have a different package name than the LG one.
The only way is to use Intents to ask the OS to open the dialer, if there is a default dialer selected it will open the default one, if default is not selected the user will be asked to choose. This is the correct and expected behavior and is made so for a reason.


推荐阅读