Back to project page WiFiSentry.
The source code is released under:
MIT License
If you think the Android project WiFiSentry listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package muntaserahmed.wifisentry; /*from w ww . j a v a2s . co m*/ import java.util.Comparator; import android.net.wifi.ScanResult; public class SortLevel implements Comparator<Object> { @Override public int compare(Object obj1, Object obj2) { CustomScanResult sr1 = (CustomScanResult) obj1; CustomScanResult sr2 = (CustomScanResult) obj2; if (sr1.level > sr2.level) { return -1; } return 1; } }