答案 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" />
这可能对你有所帮助。