我正在使用 SMS Manager 在 android 中发送短信。我使用的代码如下:
private void sendSms(String Phnno, String Message) {
if (Utils.checkSIM(MyActivity.this)) {
SmsManager smsManager = SmsManager.getDefault();
smsManager.sendTextMessage(Phnno, null, Message, null, null);
Utils.showMessage(MyActivity.this,"","Thank You for your interest,please check your inbox for the results.");
} else {
showErrorMessage(MyActivity.this, "SIM Error!",
"Please insert SIM");
}
}
这段代码在单卡手机上非常适合我,但是当我在双卡手机中检查时,我收到了以下警告,并且从不发送短信。
01-11 15:56:13.664: W/sendTextMessage(6656): use single sim interface to sendTextMessage by double sim interface
请建议我如何在我的双卡手机上实现它。在此先感谢。