Android GsmCellLocation.getCellLocation返回NULL ide
一、首先 獲取服務 telephonyManager =(TelephonyManager)
getSystemService(TELEPHONY_SERVICE);
// 二、註冊監聽器 telephonyManager.listen(celllistener,
// PhoneStateListener.LISTEN_CELL_LOCATION); // 基站位置的變化
//
// 三、編寫監聽代碼
// public PhoneStateListener celllistener = new PhoneStateListener() {
// @Override
// public void onCellLocationChanged(CellLocation location) {
// super.onCellLocationChanged(location);
// // 判斷 location的類型 是GsmCellLocation 仍是 CdmaCellLocation
// // 最後 根據你的業務 需求 實現你的代碼
//
// }
// };get