How To Read The Incoming Message Using Service In Background In Android?
I am developing an android application in that i want to read the incoming message without knowing the user.I want to always run the incoming message checker in background.If a new
Solution 1:
Take a look at BroadCastReceivers you must implement and register a Reciever for android.provider.Telephony.SMS_RECEIVED
Here is a code snippet that lets you read messages as they arrive.
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.telephony.SmsMessage;
import android.widget.Toast;
publicclassSMSReceiverextendsBroadcastReceiver
{
publicvoidonReceive(Context context, Intent intent)
{
BundlemyBundle= intent.getExtras();
SmsMessage [] messages = null;
StringstrMessage="";
if (myBundle != null)
{
Object [] pdus = (Object[]) myBundle.get("pdus");
messages = newSmsMessage[pdus.length];
for (inti=0; i < messages.length; i++)
{
messages[i] = SmsMessage.createFromPdu((byte[]) pdus[i]);
strMessage += "SMS From: " + messages[i].getOriginatingAddress();
strMessage += " : ";
strMessage += messages[i].getMessageBody();
strMessage += "\n";
}
Toast.makeText(context, strMessage, Toast.LENGTH_SHORT).show();
}
}
}
And here what you have to add to your AndroidManifest.xml file:
<uses-permissionandroid:name="android.permission.RECEIVE_SMS" /><receiverandroid:name=".SMSReceiver"><intent-filter><actionandroid:name="android.provider.Telephony.SMS_RECEIVED"/></intent-filter></receiver>
Post a Comment for "How To Read The Incoming Message Using Service In Background In Android?"