我與短信管理工作中android.The代碼我使用發送短信是如下:短信管理雙SIM卡手機?
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");
}
}
此代碼對我的作品完美地在單卡手機,但是當我檢查這個雙卡手機我我越來越關注警告並且SMS從不發送。
01-11 15:56:13.664: W/sendTextMessage(6656): use single sim interface to sendTextMessage by double sim interface
請建議我如何可以提前實現它在我的雙卡phone.Thanks。
你是如何設法得到女傭的? –
看到這個鏈接 其對華爲g730我的工作[http://stackoverflow.com/a/30677542/5102893](http://stackoverflow.com/a/30677542/5102893) –