1
휴대 전화에 SIM 카드가없는 경우에도 안드로이드의 TelephonyManager가 위치 지역 코드와 셀 ID를 제공한다는 사실을 관찰 한 적이 있습니다.android TelephonyManager가 GSMCellILocation을 버퍼링합니까?
cellLocation = (GsmCellLocation) mTMInstance.getCellLocation();
if(cellLocation == null)
return false;
currentCellID = ((GsmCellLocation)cellLocation).getCid();
currentLac = ((GsmCellLocation)cellLocation).getLac();
currentImsi = mTMInstance.getSubscriberId();
비슷한 문제가 발생했는지 확인할 수 있습니까? 나는 froyo에서 컴파일하고 진저 브레드에 응용 프로그램을 실행합니다.