Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public boolean currentWifiState(Context context) {
- ConnectivityManager cm = (ConnectivityManager)context.getSystemService(Context.CONNECTIVITY_SERVICE);
- NetworkInfo mWifi = cm.getNetworkInfo(ConnectivityManager.TYPE_WIFI);
- if(mWifi.isConnected()) {
- return true;
- }
- return false;
- }
Advertisement
Add Comment
Please, Sign In to add comment