【发布时间】:2015-08-17 06:58:00
【问题描述】:
Android:如何显示安装在我的设备上的拨号器应用列表,而不是直接调用默认拨号器
Intent intent = new Intent(Intent.ACTION_CALL);
startActivity(intent);
权限 -
<uses-permission android:name="android.permission.CALL_PHONE" />
因此,使用此代码调用默认拨号器应用程序。我想要 Android 向我建议可用于呼叫功能的应用列表的行为。
【问题讨论】:
标签: android android-intent android-dialer