Play Location Services getLastLocation returns null

前端 未结 8 1832
感动是毒
感动是毒 2021-01-13 13:51

I am trying to listen to location changes but sometimes onLocationChanged callback is never called and getLastLocation returns null, w

8条回答
  •  庸人自扰
    2021-01-13 14:06

    First

    It's kind of bug on old Android devices.

    Apparently the location APIs have different behavior on different Android versions (LocationManager has issues on Android >= 4.1, while Play Services has issues on Android 2.3), see here.

    So what I ended up with is below:

    Trying to retrieve last location by play services, if failed try with LocationManager.

    Second

    I would like to thank you all for your valuable suggestions, I get the hint to use the previous workaround from AndroidHacker's post so I think he is the one who deserve the bounty.

提交回复
热议问题