then try following method:
//---sends an SMS message to another device---
private void sendSMS(String phoneNumber, String message)
{
SmsManager sms = SmsManager.getDefault();
sms.sendTextMessage(phoneNumber, null, message, null, null);
}
And call that method for an sms send:
sendSMS(“5556”, “Hello my friends!”);
(Of course, that would also mean you would have to pay the fees incurred in sending
all those SMS messages…)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…