본문 바로가기
dev/android

android 접속중인 와이파이 이름 가져오기

by NCJ 2021. 1. 18.
728x90
반응형
SMALL

접속중인 와이피이 이름을 가져올 수 있습니다. 

 

    public String getNetworkName(Context context) {
        WifiManager manager = (WifiManager) context.getApplicationContext().getSystemService(Context.WIFI_SERVICE);
        WifiInfo info = manager.getConnectionInfo();
        return info.getSSID();
    }

 

728x90
반응형
LIST