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.
我需要弄清楚如何CALL_PRIVILEGED在我的应用程序中利用权限的力量。
CALL_PRIVILEGED
基本布局是,当我激活代码时,它只会进入预加载号码的拨号器。
我如何绕过拨号器并拨打电话?
您希望您的应用直接拨打电话吗?看一下Intent.ACTION_CALL (ACTION_DAIL 会在调用前显示号码)。
Intent.ACTION_CALL
编辑: ACTION_CALL 不会拨打紧急电话。
实际上,这从一个版本到另一个版本的 Android 发生了变化,所以它可能适用于 2.1 但不适用于 4.0。
沃尔芬