Skip to main content

Posts

Showing posts with the label Sms example

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

How to send sms in Android/Send Sms in Android

How to send sms in Android/Send Sms in Android In this article, I I’ll show you to how to send SMS in your android phone. I think one of the most simple application you are going to create is sending sms. You need only two lines of codes to send sms to your friends mobile SmsManager smsManager=SmsManager.getDefault(); smsManager.sendTextMessage(“destinationnumber”, “sourcenumber”, “Subject”, null, null); Here, sendTextMessage()method contain five arguments. Last two arguments indicates pending intent to monitor the sending process. If you are a beginner, and don’t know much about intents and pending intents then set those fields as null.  Also set permission in the manifest file to send SMS <uses-permission android:name="android.permission.SEND_SMS"> main.xml <? xml version = "1.0" encoding = "utf-8" ?> < LinearLayout xmlns:android = "http://schemas.android.com/apk/res/android"     android:orientation = "vertical"