I would like to know, how do we get the access point name from an Android Phone.
Thanks,
Sana.
EDIT:
WifiManager mWiFiManager = (WifiManager) getSystemService(Context.WIFI_SERVICE);
WifiInfo w = mWiFiManager.getConnectionInfo();
Toast.makeText(this, "APN Name = "+w.getSSID(), Toast.LENGTH_SHORT).show();
The above code snippet is for current active APN name.
Thanks tdelev
I suppose you are referring to a WiFi Access Point so this is the code you can use to achieve that:
Hope this helped you.