gpt4 book ai didi

java - 启用 WiFi 后,广播接收器能否收到移动数据 CONNECTIVITY_CHANGE 通知?

转载 作者:行者123 更新时间:2023-11-30 01:41:25 27 4
gpt4 key购买 nike

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

我相信,基于对我的一个应用程序的试验,这个问题的答案显然是否定的,当启用 WiFi 时,监听移动数据 CONNECTIVITY_CHANGE 的广播接收器在该事件发生时不会收到广播通知.如果我错了并且遗漏了什么,请告诉我。

我的应用程序是一个主屏幕小部件,有两个类,ActiveMobileData 是 AppWidgetProvider,ConnectivityChangeReceiver 是 BroadcastReceiver。 AppWidgetProvider 类是我今年早些时候组装的第一个应用程序,主要是根据一本书、StackOverflow 和各种博客等中广泛提供的代码。没有应用程序只有主屏幕小部件。它只是在红色和绿色之间切换主屏幕图标,以指示当前的移动数据状态。它已经与大约 100 个用户一起完美运行了几个月。

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

一切正常,除非启用 WiFi 时它不会收到通知。如果有解决此限制的方法,我将不胜感激。

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

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

最佳答案

我不知道,但我可以指出 2 个最佳位置。

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

特别是源代码中的注释通常包含其他地方不存在的非常有用的信息。


更新:

再次阅读 CONNECTIVITY_ACTION 的 javadoc 后,我相信您是正确的,因为它说 网络连接发生了变化。默认连接已建立或丢失。 注意:默认连接。不是“A Conn”。所以它只会在“默认”更改时启动。因此,如果您在使用 WIFI 时丢失了 3g/4g/等,那么我认为它不会启动。

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

还有一个选项。您可以为您的广播接收器制定待定 Intent (我建议只使用 1 个 BR 并具有不同的有效负载,以便您可以根据通知的内容对它们进行排序)然后将这些待定 Intent 中的每一个注册为 a call back与 ConnectivityManager 一起通知它,只要存在与 NetworkRequest“匹配”的“网络”。这至少会在它们“活跃”时通知您......

(下一个想法可能需要您使用单独的线程来提供服务以防止 ANR)

现在当它们“死亡”时...您“可以”设置一个 TCP 连接并查看它何时死亡...(不是“好”但可能只是“可行”的选择)(如果您“慷慨” ' 尽量不唤醒手机,对电池的影响可能会很小)

关于java - 启用 WiFi 后,广播接收器能否收到移动数据 CONNECTIVITY_CHANGE 通知?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34457909/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com