我正在开发一个apk,我想获得我的网络的频段频率,例如,如果我的电话是gsm,我想知道是否在850频段。
我正在阅读android开发但我无法找到任何东西。另外,我正在阅读android.telephony库,但我不知道该库是否可以帮助我。
现在我只获得了cell id和lac。
TelephonyManager telephonyManager = (TelephonyManager)getSystemService(Context.TELEPHONY_SERVICE);
GsmCellLocation cellLocation = (GsmCellLocation)telephonyManager.getCellLocation();
int cid = cellLocation.getCid();
int lac = cellLocation.getLac();
textGsmCellLocation.setText(cellLocation.toString());
textCID.setText("gsm cell id: " + String.valueOf(cid));
textLAC.setText("gsm location area code: " + String.valueOf(lac));
感谢您的帮助。