2012-11-29 83 views
0

我使用這個代碼調用,在Android應用程序:呼叫在Android應用程序中顯示添加聯繫人對話框

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

,但我得到這樣一個對話框:

enter image description here

爲什麼不電話是make?我使用平板電腦(Acer Iconia A501),而不是智能手機。

+0

檢查清單文件 – Yahor10

+0

有你給permi清單文件中的ssion?<使用權限android:name =「android.permission.CALL_PHONE」/> –

+0

這是因爲您無法從此平板電腦撥打電話... – Selvin

回答

1

試試這個

確保:

呼籲:

startActivity(new Intent(Intent.ACTION_DIAL, Uri.parse("tel:" +mEditText_number.getText()))); 

添加權限:

<uses-permission android:name="android.permission.CALL_PHONE" /> 
相關問題