EDIT: WifiConfiguration is deprecated since API level 29, from its docs:
This class was deprecated in API level 29. Use
WifiNetworkSpecifier.Builder
to create NetworkSpecifier
and
WifiNetworkSuggestion.Builder
to create WifiNetworkSuggestion
. This
will become a system use only object in the future.
Original (outdated) answer:
You can simply get the SSID from the public SSID
field of WifiConfiguration
:
List<String> ssidList = new ArrayList<>();
for(WifiConfiguration config : configuredList) {
ssidList.add(config.SSID);
}
Don't forget to add the ACCESS_WIFI_STATE
permission to your AndroidManifest.xml:
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>