我正在使用来自http://developer.android.com/training/location/geofencing.html的地理围栏代码
如果我启用 GPS 并使用以下代码请求 GPS,它工作正常
locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 1000*60 , 0, new MyLocationListener());
我应该怎么做才能从 Cell-Id 获取地理围栏警报
当我使用
locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, 1000*60 , 0, new MyLocationListener());
它显示在地理围栏中输入,但我得到的实际位置不在围栏中。
我已将地理围栏半径设置为 100m。
我们是否需要激活网络才能使该程序正常工作?
我们需要在 google play 中登录吗?
我错过了什么?