我遇到与网络服务发现有关的问题。
当我在连接wifi的情况下启动该应用程序时,NSD可以很好地发现服务并顺利解决它们。 但是在禁用wifi或从飞行模式切换wifi后连接wifi时会出现问题。
尽管它在关闭飞行模式后建立了与wifi路由器的连接,但它只是卡在DiscoveryStarted
上并且从未从那里继续进行。
在代码中,我还确保仅在确保wifi连接时才开始发现,但是没有运气。
现在我必须终止该应用程序才能使NSD正常工作。
我正在使用Google Gist的NSD Helper:
NsdHelper helper;
BroadcastReceiver wifiReciever = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
final String action = intent.getAction();
if (action.equals(WifiManager.SUPPLICANT_CONNECTION_CHANGE_ACTION)) {
if (intent.getBooleanExtra(WifiManager.EXTRA_SUPPLICANT_CONNECTED, false)) {
//do stuff
helper.stopDiscovery();
helper = new NsdHelper(context);
helper.discoverServices();
} else {
// wifi connection was lost
helper.stopDiscovery();
}
}
}
};
@Nullable
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public void onCreate() {
super.onCreate();
//startDiscovery();
// helper = new NsdHelper(this);
// helper.discoverServices();
IntentFilter intentFilter = new IntentFilter();
intentFilter.addAction(WifiManager.SUPPLICANT_CONNECTION_CHANGE_ACTION);
registerReceiver(wifiReciever, intentFilter);
Toast.makeText(this,"Service Started",Toast.LENGTH_SHORT).show();
}
@Override
public void onDestroy() {
// if(service!= null)
// {
// service.stop();
// helper.stopDiscovery();
// }
unregisterReceiver(wifiReciever);
//
Toast.makeText(this,"Service destroyed",Toast.LENGTH_SHORT).show();
super.onDestroy();
}