Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
接続中のwif-fiポイントのSSIDを知りたい。そうすることで、同じ点に繋がろうとしなくなります。Wi-Fi ポイントに接続している SSID を知るにはどうすればよいですか? isConnected() のようなメソッドはありますか?
WifiManager wifiManager = (WifiManager) getSystemService(WIFI_SERVICE); WifiInfo wifiInfo = wifiManager.getConnectionInfo(); Log.d("wifiInfo", wifiInfo.toString()); Log.d("SSID",wifiInfo.getSSID());
マニフェストに android.permission.ACCESS_WIFI_STATE が必要です