android:如何通过android应用程序调用该号码

时间:2011-04-05 12:37:19

标签: android

  

可能重复:
  how to make phone call using intent in android?

请给我通过Android应用程序调用号码的代码。

非常感谢

2 个答案:

答案 0 :(得分:115)

Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:123456789"));
startActivity(callIntent);

修改:还必须在Manifest中添加<uses-permission android:name="android.permission.CALL_PHONE" />

答案 1 :(得分:70)

试试这个,

Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:123456789"));
startActivity(callIntent);

请务必将此CALL_PHONE权限添加到manifest.xml

<uses-permission android:name="android.permission.CALL_PHONE" />

这可能对你有所帮助。