无法在我的Android应用程序中接收短信

时间:2012-10-19 06:25:24

标签: android sms broadcastreceiver

我正在尝试从我的Android应用程序中的特定号码接收短信,并尝试在我的应用程序中显示消息内容。但是我无法收到短信。

我用来接收的课程如下。

public class SmsReceiver extends BroadcastReceiver {

StringBuilder sb;

@Override
public void onReceive(Context context, Intent intent) {
    if (intent.getAction()
            .equals("android.provider.Telephony.SMS_RECEIVED")) {

        Bundle extras = intent.getExtras();
        if (extras != null) {
            Object[] pdus = (Object[]) extras.get("pdus");

            if (pdus.length < 1)
                return; // Invalid SMS. Not sure that it's possible.

            sb = new StringBuilder();
            String sender = null;
            for (int i = 0; i < pdus.length; i++) {

                SmsMessage message = SmsMessage
                        .createFromPdu((byte[]) pdus[i]);
                if (sender == null)
                    sender = message.getOriginatingAddress();

                String text = message.getMessageBody();
                if (text != null)
                    sb.append(text);
            }
            if (sender != null && sender.equals("********")) {
                // Process our sms...

                Intent broadcastIntent = new Intent();
                broadcastIntent.setAction("SMS");

                broadcastIntent.putExtra("data", sb.toString());



                context.sendOrderedBroadcast(broadcastIntent, null);
                System.out.println("MESSAGE FROM SERVER -->"
                        + sb.toString());


                this.abortBroadcast();
            }
            return;
        }
    }
}

}

收到短信后,我会检查发件人,如果是我正在寻找的发件人,那么我将发送另一个短信广播。在那里我将展示内容。

看我的清单

<receiver android:name=".SmsReceiver" >
        <intent-filter android:priority="2147483647" >
            <action android:name="android.provider.Telephony.SMS_RECEIVED" />
            <action android:name="SMS" />
        </intent-filter>
    </receiver>

我无法找到解决方案,请帮助。

1 个答案:

答案 0 :(得分:1)

要检查的事项(根据我的经验):

  • android:priority="2147483647"无效,最大值为1000。忽略大于此的数字
  • this.abortBroadcast();循环中插入for(被称为pdus.length次)
  • 如果发送的短信符合您的条件,进行测试,请将其保存在您的应用偏好设置中,并在主要活动中阅读您偏好中的值,如果有效,则问题出在您的broadcastIntent上。