7

我在注销BroadcastReceiver. 我首先注册它,但是当我想通过使用unregisterReceiver();命令取消注册它时,会给我带来大量错误。该错误表明我尚未注册我的BroadcastReceiver.

代码:

public class Receiver extends BroadcastReceiver implements Variables {

    CheckConexion cc;

    @Override
    public void onReceive(Context contxt, Intent intent) {

        // Cuando hay un evento, lo diferenciamos y hacemos una acción.

        if (intent.getAction().equals(SMS_RECEIVED)) {
            Sms sms = new Sms(null, contxt);
            sms.uploadNewSms(intent);
        } else if (intent.getAction().equals(Intent.ACTION_BATTERY_LOW)) {
            // st.batterylow(contxt);
        } else if (intent.getAction().equals(Intent.ACTION_POWER_CONNECTED)) {
            // st.power(1, contxt);
        } else if (intent.getAction().equals(Intent.ACTION_POWER_DISCONNECTED)) {
            // st.power(0, contxt);
        } else if (intent.getAction().equals(Intent.ACTION_PACKAGE_ADDED)
                || intent.getAction().equals(Intent.ACTION_PACKAGE_CHANGED)
                || intent.getAction().equals(Intent.ACTION_PACKAGE_REMOVED)) {
            Database db = new Database(contxt);
            if (db.open().Preferences(4)) {
                Uri data = intent.getData();
                new ListApps(contxt).import_app(intent, contxt, data,
                        intent.getAction());
            }
            db.close();
        } else if (intent.getAction().equals(
                ConnectivityManager.CONNECTIVITY_ACTION)) {
            cc = new CheckConexion(contxt);
            if (cc.isOnline()) {

                /*Database db = new Database(contxt);
                db.open();
                if (db.move() == 1) {
                    new UploadOffline(contxt);
                }
                db.close();*/

            }
        }

    }

    public void register(Context c) {
        Receiver r = new Receiver();
        IntentFilter i = new IntentFilter();
        i.addAction(SMS_RECEIVED);
        i.addAction(Intent.ACTION_BATTERY_LOW);
        i.addAction(Intent.ACTION_POWER_CONNECTED);
        i.addAction(Intent.ACTION_POWER_DISCONNECTED);
        i.addAction(Intent.ACTION_CALL_BUTTON);
        i.addAction(Intent.ACTION_CAMERA_BUTTON);
        i.addAction(ConnectivityManager.CONNECTIVITY_ACTION);
        c.registerReceiver(r, i);
        IntentFilter apps = new IntentFilter();
        apps.addAction(Intent.ACTION_PACKAGE_ADDED);
        apps.addAction(Intent.ACTION_PACKAGE_CHANGED);
        apps.addAction(Intent.ACTION_PACKAGE_REMOVED);
        apps.addDataScheme("package");
        c.registerReceiver(r, apps);
    }

    public void unregister(Context c) {
        BroadcastReceiver r = new Receiver();
        if (r != null) {
            c.unregisterReceiver(r);
        }
    }
}
4

4 回答 4

7

首先,

使用来处理Reciever 类的对象

删除所有r对象,不要在扩展类中调用构造函数。

然后:

定义

boolean isRegistered = false;

在您的注册方法中:

c.registerReceiver(this);
isRegistered = true;

在您的注销方法中:

if (isRegistered) {
    c.unregisterReceiver(this);
    isRegistered = false;
}

然后在您的活动中使用Reciver类的实例。

希望,这很有帮助!

于 2012-09-14T09:36:01.727 回答
6

最好的解决方案是将unregisterReceiver方法放入 try catch 块中。

try {
    this.unregisterReceiver(myReceiver);
}
catch (final Exception exception) {
    // The receiver was not registered.
    // There is nothing to do in that case.
    // Everything is fine.
}

不幸的是,unregisterReceiver失败时没有抛出特定的异常,所以你必须使用Exception. 此外,不幸的是,没有类似的方法isReceiverRegistered(BroadcastReceiver receiver),在我看来,这将是对 Android API 的增强。

此外,看看ReceiverLifecycle也无妨

于 2015-07-07T18:08:50.933 回答
4

您不能取消注册广播接收器的新实例。您将需要使用已注册的相同 BroadcastReciever 实例。

所以使用

 c.registerReceiver(this, apps);

 c.unregisterReceiver(this);
于 2012-09-14T09:20:29.203 回答
0

在 unregister 方法中,您正在创建一个新的 BroadcastReceiver 实例并取消注册它。而是将注册方法中的实例设为全局并调用

if (r != null) {
        c.unregisterReceiver(r);
        r = null;
 }

在注销方法中。

于 2012-09-14T09:23:35.443 回答