Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. private void updateFusedLocation() {
  2. // may the best location win!
  3. if (isBetterThan(mGpsLocation, mNetworkLocation)) {
  4. mFusedLocation = new Location(mGpsLocation);
  5. } else {
  6. mFusedLocation = new Location(mNetworkLocation);
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement