1

我正在尝试从我的 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>

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

4

1 回答 1

1

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

  • android:priority="2147483647"无效,最大值为1000。大于此的数字将被忽略
  • 插入你this.abortBroadcast();for循环(被称为pdus.length时间)
  • 如果发送的短信符合您的标准,进行测试,将其保存在您的应用偏好中,并在您的主要活动中读取您偏好中的值,如果它有效,那么问题出在您的broadcastIntent.
于 2012-10-19T08:33:07.323 回答