我试图创建Wifi分析器应用程序。我需要获得wifi频道的评级。我怎么能这样做?
这就是我获取Wi-Fi频道的方式。
........
TextView tvChannel = (TextView) lv.getChildAt(wantedChild).findViewById(R.id.textViewChannel);
tvChannel.setText(" " + convertFrequencyToChannel(results.get(i).frequency));
.......
public static int convertFrequencyToChannel(int freq) {
if (freq >= 2412 && freq <= 2484) {
return (freq - 2412) / 5 + 1;
} else if (freq >= 5170 && freq <= 5825) {
return (freq - 5170) / 5 + 34;
} else {
return -1;
}
}