Java Code Examples for com.google.zxing.client.result.WifiParsedResult#isHidden()
The following examples show how to use
com.google.zxing.client.result.WifiParsedResult#isHidden() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: WifiConfigManager.java From ZXing-Standalone-library with Apache License 2.0 | 5 votes |
private static WifiConfiguration changeNetworkCommon(WifiParsedResult wifiResult) { WifiConfiguration config = new WifiConfiguration(); config.allowedAuthAlgorithms.clear(); config.allowedGroupCiphers.clear(); config.allowedKeyManagement.clear(); config.allowedPairwiseCiphers.clear(); config.allowedProtocols.clear(); // Android API insists that an ascii SSID must be quoted to be correctly handled. config.SSID = quoteNonHex(wifiResult.getSsid()); config.hiddenSSID = wifiResult.isHidden(); return config; }
Example 2
Source File: WifiConfigManager.java From analyzer-of-android-for-Apache-Weex with Apache License 2.0 | 5 votes |
private static WifiConfiguration changeNetworkCommon(WifiParsedResult wifiResult) { WifiConfiguration config = new WifiConfiguration(); config.allowedAuthAlgorithms.clear(); config.allowedGroupCiphers.clear(); config.allowedKeyManagement.clear(); config.allowedPairwiseCiphers.clear(); config.allowedProtocols.clear(); // Android API insists that an ascii SSID must be quoted to be correctly handled. config.SSID = quoteNonHex(wifiResult.getSsid()); config.hiddenSSID = wifiResult.isHidden(); return config; }
Example 3
Source File: WifiConfigManager.java From weex with Apache License 2.0 | 5 votes |
private static WifiConfiguration changeNetworkCommon(WifiParsedResult wifiResult) { WifiConfiguration config = new WifiConfiguration(); config.allowedAuthAlgorithms.clear(); config.allowedGroupCiphers.clear(); config.allowedKeyManagement.clear(); config.allowedPairwiseCiphers.clear(); config.allowedProtocols.clear(); // Android API insists that an ascii SSID must be quoted to be correctly handled. config.SSID = quoteNonHex(wifiResult.getSsid()); config.hiddenSSID = wifiResult.isHidden(); return config; }
Example 4
Source File: WifiConfigManager.java From Study_Android_Demo with Apache License 2.0 | 5 votes |
private static WifiConfiguration changeNetworkCommon(WifiParsedResult wifiResult) { WifiConfiguration config = new WifiConfiguration(); config.allowedAuthAlgorithms.clear(); config.allowedGroupCiphers.clear(); config.allowedKeyManagement.clear(); config.allowedPairwiseCiphers.clear(); config.allowedProtocols.clear(); // Android API insists that an ascii SSID must be quoted to be correctly handled. config.SSID = quoteNonHex(wifiResult.getSsid()); config.hiddenSSID = wifiResult.isHidden(); return config; }
Example 5
Source File: WifiConfigManager.java From barcodescanner-lib-aar with MIT License | 5 votes |
private static WifiConfiguration changeNetworkCommon(WifiParsedResult wifiResult) { WifiConfiguration config = new WifiConfiguration(); config.allowedAuthAlgorithms.clear(); config.allowedGroupCiphers.clear(); config.allowedKeyManagement.clear(); config.allowedPairwiseCiphers.clear(); config.allowedProtocols.clear(); // Android API insists that an ascii SSID must be quoted to be correctly handled. config.SSID = quoteNonHex(wifiResult.getSsid()); config.hiddenSSID = wifiResult.isHidden(); return config; }
Example 6
Source File: WifiConfigManager.java From reacteu-app with MIT License | 5 votes |
private static WifiConfiguration changeNetworkCommon(WifiParsedResult wifiResult) { WifiConfiguration config = new WifiConfiguration(); config.allowedAuthAlgorithms.clear(); config.allowedGroupCiphers.clear(); config.allowedKeyManagement.clear(); config.allowedPairwiseCiphers.clear(); config.allowedProtocols.clear(); // Android API insists that an ascii SSID must be quoted to be correctly handled. config.SSID = quoteNonHex(wifiResult.getSsid()); config.hiddenSSID = wifiResult.isHidden(); return config; }
Example 7
Source File: WifiConfigManager.java From zxingfragmentlib with Apache License 2.0 | 5 votes |
private static WifiConfiguration changeNetworkCommon(WifiParsedResult wifiResult) { WifiConfiguration config = new WifiConfiguration(); config.allowedAuthAlgorithms.clear(); config.allowedGroupCiphers.clear(); config.allowedKeyManagement.clear(); config.allowedPairwiseCiphers.clear(); config.allowedProtocols.clear(); // Android API insists that an ascii SSID must be quoted to be correctly handled. config.SSID = quoteNonHex(wifiResult.getSsid()); config.hiddenSSID = wifiResult.isHidden(); return config; }
Example 8
Source File: WifiConfigManager.java From BarcodeEye with Apache License 2.0 | 5 votes |
private static WifiConfiguration changeNetworkCommon(WifiParsedResult wifiResult) { WifiConfiguration config = new WifiConfiguration(); config.allowedAuthAlgorithms.clear(); config.allowedGroupCiphers.clear(); config.allowedKeyManagement.clear(); config.allowedPairwiseCiphers.clear(); config.allowedProtocols.clear(); // Android API insists that an ascii SSID must be quoted to be correctly handled. config.SSID = quoteNonHex(wifiResult.getSsid()); config.hiddenSSID = wifiResult.isHidden(); return config; }