启用WiFi时,广播接收器是否可以收到移动数据CONNECTIVITY_CHANGE通知?

时间:2015-12-24 21:08:02

标签: java android widget broadcast connectivity

对于有关广播接收器和移动数据连接主题的许多主题,博客,示例和教程,我还没有看到这个问题被提出或回答。

我相信,基于对我的某个应用程序的试验,该问题的答案是一个明显的NO,即启用WiFi时,侦听Mobile Data CONNECTIVITY_CHANGE的广播接收器在该事件发生时不会收到广播通知。如果我错了,错过了什么,请告诉我。

My App是一个带有两个类的主屏幕Widget,ActiveMobileData是AppWidgetProvider,ConnectivityChangeReceiver是BroadcastReceiver。 AppWidgetProvider类是我的第一个应用程序,我今年早些时候将它放在一起,主要来自书籍,StackOverflow和各种博客等广泛提供的代码。没有应用程序只是主屏幕小部件。它只需切换红色和绿色之间的主屏幕图标,以指示当前的移动数据状态。它与大约100名用户一起工作了好几个月。

我决定添加BroadcastReceiver以从“设置”中获取点击次数。此代码也很简单 - 它确定移动数据的当前状态,并使用AppWidgetProvider设置的全局布尔变量来确定主屏幕图标是红色还是绿色。然后它只是确保图标颜色与移动数据状态匹配。

这一切都有效,除非启用WiFi时它没有收到通知。如果有办法解决这个问题,我将不胜感激。

以下是小部件的代码,然后是接收器的代码。我遗漏了一些细节,以保持简短。 iconEnabled是共享的全局布尔变量...

public class ActiveMobileData extends AppWidgetProvider {
static boolean iconEnabled;
@Override
public void onReceive(Context context, Intent intent) {
    if (intent.getAction() != null)
        super.onReceive(context, intent);
    else {
        context.startService(new Intent(context, ToggleService.class));
    }
}
@Override
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[]appWidgetIds) {
    context.startService(new Intent(context, ToggleService.class));
}
public static class ToggleService extends IntentService {
    public ToggleService() {
        super("ActiveMobileData$ToggleService");
    }
    @Override
    protected void onHandleIntent(Intent intent) {
        ComponentName cn = new ComponentName(this, ActiveMobileData.class);
        AppWidgetManager mgr = AppWidgetManager.getInstance(this);
        mgr.updateAppWidget(cn, buildUpdate(this));
    }
    private RemoteViews buildUpdate(Context context) {
        RemoteViews updateViews = new RemoteViews(context.getPackageName(), R.layout.widget);
        if (!isMobileDataEnabled(getApplicationContext())) {
            updateViews.setImageViewResource(R.id.mobileDataState, R.mipmap.ic_launcher_g);
            enableMobileData(getApplicationContext(), true);
            iconEnabled = true;
        } else {
            updateViews.setImageViewResource(R.id.mobileDataState, R.mipmap.ic_launcher_r);
            enableMobileData(getApplicationContext(), false);
            iconEnabled = false;
        }
        Intent i = new Intent(this, ActiveMobileData.class);
        PendingIntent pi = PendingIntent.getBroadcast(context, 0, i, 0);
        updateViews.setOnClickPendingIntent(R.id.mobileDataState, pi);
        return updateViews;
    }
    public boolean isMobileDataEnabled(Context context) {
        // ... the code here is the one that uses Java reflection
    }
    private void enableMobileData(Context context, boolean enabled) {
        // ... the code here is the one that uses Java reflection
    }

  } // public static class ToggleService
} // public class ActiveMobileData

以下是BroadcastReceiver的代码...

public class ConnectivityChangeReceiver extends BroadcastReceiver {
    @Override
    public void onReceive (Context context, Intent intent) {
        handleIntent(context);
    }
    protected void handleIntent(Context context) {
        ComponentName cn = new ComponentName(context, ActiveMobileData.class);
        AppWidgetManager mgr = AppWidgetManager.getInstance(context);
        mgr.updateAppWidget(cn, buildUpdate(context));
    }
    private RemoteViews buildUpdate(Context context) {
        RemoteViews updateViews = new RemoteViews(context.getPackageName(), R.layout.widget);
        if (!ActiveMobileData.iconEnabled && isMobileDataEnabled(context)) {
            ActiveMobileData.iconEnabled = true;
            updateViews.setImageViewResource(R.id.mobileDataState, R.mipmap.ic_launcher_g);
            Intent i = new Intent(context, ActiveMobileData.class);
            PendingIntent pi = PendingIntent.getBroadcast(context, 0, i, 0);
            updateViews.setOnClickPendingIntent(R.id.mobileDataState, pi);
        } else
        if (ActiveMobileData.iconEnabled && !isMobileDataEnabled(context)) {
            ActiveMobileData.iconEnabled = false;
            updateViews.setImageViewResource(R.id.mobileDataState, R.mipmap.ic_launcher_r);
            Intent i = new Intent(context, ActiveMobileData.class);
            PendingIntent pi = PendingIntent.getBroadcast(context, 0, i, 0);
            updateViews.setOnClickPendingIntent(R.id.mobileDataState, pi);
        }
        return updateViews;
    }
    private boolean isMobileDataEnabled(Context context) {
       // ... Identical code to that in the AppWidgetProvider
    }
} // class ConnectivityChangeReceiver

1 个答案:

答案 0 :(得分:1)

我不会随便知道,但我可以指出你最好看的两个地方。

最好的办法是详细查看JavaDoc for ConnectivityManager.html#CONNECTIVITY_ACTION,然后source code for the ConnectivityManager that is online on GrepCode

特别是源代码中的注释通常会提供非常有用的信息,而这些信息在其他地方并不存在。

更新

再次阅读CONNECTTIVITY_ACTION的javadoc后,我认为你是正确的,因为它说A change in network connectivity has occurred. A default connection has either been established or lost.注意:默认Conn。不是' A Conn。'所以它只会在默认情况下启动。变化。因此,如果您在使用WIFI时丢失3g / 4g /等,那我就不会认为这会被启动。

然而,'是'你可以'做...(但只有当你的小部件正在运行时)(我实际上并非100%确定小部件可以做到这一点... b / c我通常使用教学服务/ AIDL / ContentProviders / etc(又称。'后端'平台内的东西)但是你可以在你的小部件上放置一个可以查询到GET ALL NETWORKS然后解析的“刷新”按钮所有这些数据并显示哪些网络是“活跃的”等。

还有选项。您可以为广播接收器制作待定意图(我建议只使用1 BR并具有不同的有效负载,以便您可以对它们进行排序以获得通知)然后将每个待处理意图注册为a call back使用ConnectivityManager在网络“'那匹配' NetworkRequest存在。这将至少在他们活着的时候通知你......

(下一个想法可能会要求您使用单独的线程进行服务以防止ANR)

现在当他们死了......你可以'建立一个TCP连接,看看它什么时候死了......(不是好的'但可能只是'可行的'选项)(如果你是'慷慨'试图不唤醒手机,电池影响可能是最小的)