Skip to main content

Posts

Showing posts with the label Receive sms program

How to receive Sms in android/SMSReceiver in android

How to receive Sms in android/SMSReceiver in android We can create a sample smsreceiver application, so that whenever a new sms comes to the mobile, our app will display a toast about the message. In this example, you need not to create an activity. The only class needed is Broadcast Receiver. Broadcast Receiver will wait for a desired intent and executes when the condition reached.  In our example, the broadcast receiver will automatically loads whenever an sms is received. To do this, you need to create intent filter in your manifest file < intent-filter >                 < action android:name = "android.provider.Telephony.SMS_RECEIVED" />                             </ intent-filter > Smsreceiver.java package com.example.smsreceiver; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; import android.os.Bundle; import android.telephony.SmsMessage; import android.widget.Toast; public class SmsRe