首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >注销匿名BroadCastReceiver

注销匿名BroadCastReceiver
EN

Stack Overflow用户
提问于 2013-06-21 07:12:00
回答 1查看 1.5K关注 0票数 2

我正在做短信发送功能。我正在使用匿名广播接收器注册。现在我有例外来做注销。

下面是我的代码:

代码语言:javascript
复制
public class SMSUtility
{
public static void sendSMS(final Context context, String phoneNumber, String message)
{
    MobiculeLogger.showInfoLog("SMS UTILITY", "Inside sendSMS");
    String SENT = "SMS_SENT";
    String DELIVERED = "SMS_DELIVERED";

    PendingIntent sentPI = PendingIntent.getBroadcast(context, 0, new Intent(SENT), 0);

    PendingIntent deliveredPI = PendingIntent.getBroadcast(context, 0, new Intent(DELIVERED), 0);




    // ---when the SMS has been sent---
    context.registerReceiver(new BroadcastReceiver()
    {
        @Override
        public void onReceive(Context arg0, Intent arg1)
        {
            switch (getResultCode())
            {
                case Activity.RESULT_OK:
                    Toast.makeText(context, "SMS sent", Toast.LENGTH_SHORT).show();
                    break;
                case SmsManager.RESULT_ERROR_GENERIC_FAILURE:
                    Toast.makeText(context, "Generic failure", Toast.LENGTH_SHORT).show();
                    break;
                case SmsManager.RESULT_ERROR_NO_SERVICE:
                    Toast.makeText(context, "No service", Toast.LENGTH_SHORT).show();
                    break;
                case SmsManager.RESULT_ERROR_NULL_PDU:
                    Toast.makeText(context, "Null PDU", Toast.LENGTH_SHORT).show();
                    break;
                case SmsManager.RESULT_ERROR_RADIO_OFF:
                    Toast.makeText(context, "Radio off", Toast.LENGTH_SHORT).show();
                    break;
            }
        }
    }, new IntentFilter(SENT));

    // ---when the SMS has been delivered---
    context.registerReceiver(new BroadcastReceiver()
    {
        @Override
        public void onReceive(Context arg0, Intent arg1)
        {
            switch (getResultCode())
            {
                case Activity.RESULT_OK:
                    Toast.makeText(context, "SMS delivered", Toast.LENGTH_SHORT).show();
                    break;
                case Activity.RESULT_CANCELED:
                    Toast.makeText(context, "SMS not delivered", Toast.LENGTH_SHORT).show();
                    break;
            }
        }
    }, new IntentFilter(DELIVERED));



    SmsManager sms = SmsManager.getDefault();
    MobiculeLogger.showInfoLog("SMSUTILITY ", "SMS = "+sms.toString());
    sms.sendTextMessage(phoneNumber, null, message, sentPI, deliveredPI);
    MobiculeLogger.showInfoLog("SMSUTILITY ", "SEND TEXT MESSAGE phone number= "+phoneNumber+" message ="+message);


}
}
EN

回答 1

Stack Overflow用户

发布于 2013-06-21 07:16:34

使用类似

代码语言:javascript
复制
BroadCastReceiver r = new BroadcastReceiver()
{
    @Override
    public void onReceive(Context arg0, Intent arg1)
    {
        switch (getResultCode())
        {
            case Activity.RESULT_OK:
                Toast.makeText(context, "SMS delivered", Toast.LENGTH_SHORT).show();
                break;
            case Activity.RESULT_CANCELED:
                Toast.makeText(context, "SMS not delivered", Toast.LENGTH_SHORT).show();
                break;
        }
    }
};

寄存器使用

代码语言:javascript
复制
context.registerReceiver(r, new IntentFilter(DELIVERED));

注销使用

代码语言:javascript
复制
context.unregisterReceiver(r);
票数 2
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/17229599

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档