Create new isNetworkSupported API
Useful for checking if on a wifi-only device. Similar to asking for NetworkInfo for a network type and checking for null, though here the intent is explicit. bug:5087537 Change-Id: Ia3ddd09b6b735b8b3ceb7a347891e015fd96b218
This commit is contained in:
@@ -703,6 +703,12 @@ public class ConnectivityService extends IConnectivityManager.Stub {
|
||||
return result.toArray(new NetworkInfo[result.size()]);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isNetworkSupported(int networkType) {
|
||||
enforceAccessPermission();
|
||||
return (isNetworkTypeValid(networkType) && (mNetTrackers[networkType] != null));
|
||||
}
|
||||
|
||||
/**
|
||||
* Return LinkProperties for the active (i.e., connected) default
|
||||
* network interface. It is assumed that at most one default network
|
||||
|
||||
Reference in New Issue
Block a user