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.c...
If you are a beginner , then this blog will help you to dive into the basics.