I have searched the internet and stackoverflow and there are many similar question but non of them help me to solve my problem. I have an android application that sends and accept text message(not for messaging purpose). I have used the following code to send the sms text message.
void sendSMS(Context context, final String smsTo,final String message) {
mContext=context;
String SMS_SENT = "SMS SENT";
PendingIntent sentPendingIntent = PendingIntent.getBroadcast(mContext, 0, new Intent(SMS_SENT), 0);
String SMS_DELIVERED = "SMS DELIVERED";
PendingIntent deliveredPendingIntent = PendingIntent.getBroadcast(mContext, 0, new Intent(SMS_DELIVERED), 0);
//for sms SENT
mContext.registerReceiver(new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
switch (getResultCode()) {
case Activity.RESULT_OK:
Toast.makeText(context, "SMS sent successfully", Toast.LENGTH_SHORT).show();
break;
case SmsManager.RESULT_ERROR_GENERIC_FAILURE:
Toast.makeText(context, "Generic failure cause", Toast.LENGTH_SHORT).show();
sendMessage.sendHTTP(mContext,smsTo, message);
break;
case SmsManager.RESULT_ERROR_NO_SERVICE:
Toast.makeText(context, "Service is currently unavailable", Toast.LENGTH_SHORT).show();
sendMessage.sendHTTP(mContext,smsTo, message);
break;
case SmsManager.RESULT_ERROR_NULL_PDU:
Toast.makeText(context, "No pdu provided", Toast.LENGTH_SHORT).show();
sendMessage.sendHTTP(mContext,smsTo, message);
break;
case SmsManager.RESULT_ERROR_RADIO_OFF:
Toast.makeText(context, "Radio was explicitly turned off", Toast.LENGTH_SHORT).show();
sendMessage.sendHTTP(mContext,smsTo, message);
break;
}
}
}, new IntentFilter(SMS_SENT));
//for sms Receive
mContext.registerReceiver(new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
switch (getResultCode()) {
case Activity.RESULT_OK:
Toast.makeText(mContext.getApplicationContext(), "SMS delivered", Toast.LENGTH_SHORT).show();
break;
case Activity.RESULT_CANCELED:
Toast.makeText(mContext.getApplicationContext(), "SMS not delivered", Toast.LENGTH_SHORT).show();
break;
}
}
},new IntentFilter(SMS_DELIVERED));
SmsManager smsManager = SmsManager.getDefault();
smsManager.sendTextMessage(smsTo, null, message, sentPendingIntent, deliveredPendingIntent);
}
And i have also a receiver
public class SMSReceive extends BroadcastReceiver {
private Context mContext;
@Override
public void onReceive(Context context, Intent intent) {
Bundle bundle=intent.getExtras();
mContext=context;
SmsMessage[] smsMessage=null;
String stringMessage=null;
if(bundle!=null)
{
Toast.makeText(context.getApplicationContext(),"message recieved",Toast.LENGTH_LONG).show();
Object[] pdus= (Object[])bundle.get("pdus");
smsMessage=new SmsMessage[pdus.length];
// For every SMS message received
for (int i=0; i < smsMessage.length; i++) {
smsMessage[i]=SmsMessage.createFromPdu((byte[])pdus[i]);
stringMessage=smsMessage[i].getDisplayOriginatingAddress()+" "+ smsMessage[i].getMessageBody();
}
if(stringMessage!=null) {
//accept the message do something.
}
}
}
}
And i have also registered the broadcast receiver in AndroidManifest.xml file as follow
<receiver
android:name=".SMSReceive"
android:enabled="true"
android:exported="true">
<intent-filter android:priority="999">
<action android:name="android.provider.telephony.SMS_RECIEVED"></action>
</intent-filter>
</receiver>
The text message is successfully sent and delivered to phone but the default message app is receiving the text message my app is not receiving the text message.
Change that to:
or, copy and paste the value from the documentation.