android:如何通过android应用程序调用数字

可能重复:
如何打电话使用意图在Android?

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

非常感谢

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

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

尝试这个,

 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" /> 

这可能会帮助你。