这个问题已经在这里有了答案:
已关闭8年。
请给我通过android应用程序拨打该号码的代码。
非常感谢
最佳答案
Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:123456789"));
startActivity(callIntent);
编辑:还必须在 list 中添加
<uses-permission android:name="android.permission.CALL_PHONE" />
。