Need to know Wi-Fi access Point name in android

I need to know the name of the wifi access point that the device is using. How to do it?

+3
source share
1 answer

Use WifiManager .

WifiManager wifiManager = (WifiManager) getSystemService(Context.WIFI_SERVICE);
     if (wifiManager != null) {
         WifiInfo info = wifiManager.getConnectionInfo();
         if (info != null) {
            String ssid = info.getSSID();
            ...
     }           
}

Then you need to add permission to the manifest.

<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
+7
source

All Articles