android 접속중인 와이파이 이름 가져오기
·
dev/android
접속중인 와이피이 이름을 가져올 수 있습니다. public String getNetworkName(Context context) { WifiManager manager = (WifiManager) context.getApplicationContext().getSystemService(Context.WIFI_SERVICE); WifiInfo info = manager.getConnectionInfo(); return info.getSSID(); }