Android:如何显示安装在我的设备上的拨号器应用程序列表,而不是直接调用默认拨号器
Intent intent = new Intent(Intent.ACTION_CALL);
startActivity(intent);
允许 -
<uses-permission android:name="android.permission.CALL_PHONE" />
因此,使用此代码会调用默认拨号器应用程序。我想要 Android 向我建议可用于呼叫功能的应用程序列表的行为。