调用Android应用程序中显示添加联系人对话框(Call in Android applicati

2019-08-03 08:13发布

我使用这个代码调用,在Android应用程序:

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

但我得到这样的对话:

为什么没有呼叫是做什么呢?

PS:我使用的是平板电脑(宏碁Iconia A501),而不是智能手机。

Answer 1:

试试这个

确保 :

拨电至 :

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

添加权限:

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


文章来源: Call in Android application shows add contact dialog