如何从三星 10.1 Android 平板电脑拨打电话?平板电脑支持 mini SIM 卡、2G 和 3G 网络。但是,我可以在平板电脑上接收短信,但无法拨打任何电话。当我想从我的应用程序中拨打电话时,我会被重定向到添加新联系人。(请注意,从电话设备拨打电话可以正常工作!)这是我拨打电话的代码:
public void onClick(View v) {
String destination = mContactsAt.getText().toString();
Log.d("CallActivity", "after getting the contact name");
String phoneNo = getPhoneNumber(destination);
Log.d("CallActivity", "after showing number");
if (phoneNo.startsWith("+")){
phoneNo.replace("+", "00");
}
phoneNo.replaceAll("[^0-9]+", "");
Log.d("CallActivity", "phoneNo to call =" + phoneNo + " destination " + destination);
phoneNumber = phoneNo;
contactName = destination;
Intent intent = new Intent(Intent.ACTION_CALL);
intent.setData(Uri.parse("tel:"+phoneNo.trim()));
startActivity(intent);
}