Last active
August 29, 2015 14:17
-
-
Save kinka/b0664124eff44e98d817 to your computer and use it in GitHub Desktop.
wifi connect
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TextView txtView = (TextView) findViewById(R.id.txt_ssids); | |
WifiManager wm = (WifiManager) getSystemService(Context.WIFI_SERVICE); | |
WifiInfo info = wm.getConnectionInfo(); | |
int strenth = info.getRssi(); | |
int speed = info.getLinkSpeed(); | |
String uints = WifiInfo.LINK_SPEED_UNITS; | |
String ssid = info.getSSID(); | |
List<ScanResult> results = wm.getScanResults(); | |
String otherWifi = "others:\n"; | |
for (ScanResult result: results) | |
otherWifi += result.SSID + ":" + result.level + " 等级:" + wm.calculateSignalLevel(result.level, 5) + "\n"; | |
String text = "We are connecting to " + ssid + " at " + speed + " " + uints + "\n\n"; | |
txtView.setText(text + otherWifi); | |
WifiConfiguration wc = new WifiConfiguration(); | |
wc.SSID = "\"3idiots\""; | |
wc.preSharedKey = "\"shuiwuju\""; | |
// wc.hiddenSSID = true; | |
wc.status = WifiConfiguration.Status.ENABLED; | |
wc.allowedAuthAlgorithms.set(WifiConfiguration.AuthAlgorithm.OPEN); | |
wc.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.TKIP); | |
wc.allowedGroupCiphers.set(WifiConfiguration.GroupCipher.CCMP); | |
wc.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_PSK); | |
wc.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.TKIP); | |
wc.allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.CCMP); | |
wc.allowedProtocols.set(WifiConfiguration.Protocol.WPA); | |
int networkId = wm.addNetwork(wc); | |
if (networkId != -1) { | |
wm.enableNetwork(networkId, false); | |
wm.saveConfiguration(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment