在Android应用程序中调用添加联系人对话框

时间:2012-11-29 11:19:00

标签: android android-intent call android-contacts

我在Android应用程序中使用此代码进行调用:

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

但是我得到了一个这样的对话框:

enter image description here

为什么不打电话?

P.s:我正在使用平板电脑(Acer Iconia A501),而不是智能手机。

1 个答案:

答案 0 :(得分:1)

试试这个

确保:

致电:

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

添加权限:

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