开发者

In android how should i get phone number of sms sender?

开发者 https://www.devze.com 2023-02-25 04:09 出处:网络
In android how should i get phone number of sms sender? I ma开发者_高级运维ke application which sends sms but takes money charges for that, so can i send sms without charging money? please tell meTo

In android how should i get phone number of sms sender?

I ma开发者_高级运维ke application which sends sms but takes money charges for that, so can i send sms without charging money? please tell me


To send SMS without Spending Money is only possible if you implement any FREE SMS GATEWAY. Based on what country you are, you will find any FREE SMS GATEWAY and try to find any web services or API they are providing. Write a code using that and you will be able to send SMS for FREE. Make sure this required an internet connection on your phone.

If you implement a BroadCast Receiver for Incoming SMS in that case following is the code which will track your imcoming SMS and will give you the Message and Sender Number.

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.telephony.gsm.SmsMessage;
import android.widget.Toast;

public class SmsReceiver extends BroadcastReceiver
{
    @Override
    public void onReceive(Context context, Intent intent) 
    {
        //---get the SMS message passed in---
        Bundle bundle = intent.getExtras();        
        SmsMessage[] msgs = null;
        String str = "";            
        if (bundle != null)
        {
            //---retrieve the SMS message received---
            Object[] pdus = (Object[]) bundle.get("pdus");
            msgs = new SmsMessage[pdus.length];            
            for (int i=0; i<msgs.length; i++){
                msgs[i] = SmsMessage.createFromPdu((byte[])pdus[i]);                
                str += "SMS from " + msgs[i].getOriginatingAddress();                     
                str += " :";
                str += msgs[i].getMessageBody().toString();
                str += "\n";        
            }
            //---display the new SMS message---
            Toast.makeText(context, str, Toast.LENGTH_SHORT).show();
        }                         
    }
}


the method .getOriginatingAddress() in rahul code gives the senders phone no. so use it wherever you want.simple!!


Here's an awesome reference. It has the following tutorial link to the code below.

It worked great for me!

public class SmsReceiver extends BroadcastReceiver {

@Override
  public void onReceive(Context context, Intent intent) {
        final String tag = TAG + ".onReceive";
        Bundle bundle = intent.getExtras();
        if (bundle == null) {
              Log.w(tag, "BroadcastReceiver failed, no intent data to process.");
              return;
        }
        if (intent.getAction().equals(SMS_RECEIVED)) {
              Log.d(tag, "SMS_RECEIVED");

              String smsOriginatingAddress, smsDisplayMessage;

               /**
               * You have to CHOOSE which code snippet to use NEW (KitKat+), or legacy
               * Please comment out the for{} you don't want to use.
               */
              if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {

                 // API level 19 (KitKat 4.4) getMessagesFromIntent
                 for (SmsMessage message : Telephony.Sms.Intents.
                                        getMessagesFromIntent(intent)) {
                    Log.d(tag, "KitKat or newer");
                    if (message == null) {
                          Log.e(tag, "SMS message is null -- ABORT");
                          break;
                    }
                    smsOriginatingAddress = message.getDisplayOriginatingAddress();
                    //see getMessageBody();
                    smsDisplayMessage = message.getDisplayMessageBody();
                    processReceivedSms(smsOriginatingAddress, smsDisplayMessage);
                  }
               } else {

                  // Processing SMS messages the OLD way, before KitKat,
                  // this WILL work on KitKat or newer Android
                  // PDU is a “protocol data unit”, which is the industry
                  // format for an SMS message
                  Object[] data = (Object[]) bundle.get("pdus");
                  for (Object pdu : data) {
                    Log.d(tag, "legacy SMS implementation (before KitKat)");
                    SmsMessage message = SmsMessage.createFromPdu((byte[]) pdu);
                    if (message == null) {
                          Log.e(tag, "SMS message is null -- ABORT");
                          break;
                    }
                    smsOriginatingAddress = message.getDisplayOriginatingAddress();
                    // see getMessageBody();
                    smsDisplayMessage = message.getDisplayMessageBody();
                    processReceivedSms(smsOriginatingAddress, smsDisplayMessage);
                  }
               }
        } // onReceive method
0

精彩评论

暂无评论...
验证码 换一张
取 消