在非Activity类经纬度定位,我现在是专有APN不能上外网。而且只能通过GPS卫星定位,但是Location定位是有界面的,我想要个后台能拿到值的。

解决方案 »

  1.   

    通过GPS取得位置信息不一定要有界面啊
      

  2.   

    Location 和界面没关系,相关参数要设置正确,就可以拿到。LocationManager loctionManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
    Location location = loctionManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
      

  3.   

    LocationManager.NETWORK_PROVIDER 不需要上网吗?我的是私有APN