39
可能重複:
how to make phone call using intent in android?的android:如何通過Android應用程序撥打的號碼
請給我的代碼,通過Android應用程序呼叫的號碼。
非常感謝
可能重複:
how to make phone call using intent in android?的android:如何通過Android應用程序撥打的號碼
請給我的代碼,通過Android應用程序呼叫的號碼。
非常感謝
Intent callIntent = new Intent(Intent.ACTION_CALL);
callIntent.setData(Uri.parse("tel:123456789"));
startActivity(callIntent);
編輯:必須添加在清單<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" />
這可能幫助你。
必須在Manifest中添加' '。 –
Mika
2013-01-28 07:14:47