How can I get location without internet in android, using only GPS

前端 未结 2 811
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-29 00:52

I want to get location using GPS only. I don\'t want to use internet and GPRS in this application. My code is below; tell me where I\'m wrong in this.

code:

2条回答
  •  轮回少年
    2020-12-29 01:18

    Use this for only GPS Provider, it does not need GPRS.

    locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, mlocListener);
    
    
    

    You need to put the permission in manifest file.

提交回复
热议问题