Getting location takes a long time in Android App
I was developing an android app for a while which used to access the current location of a user and then other things. But meanwhile the latitude and longitude return 0.0 & 0.0 and then after a while, it shows some values.
I have had used FusedLocationAPI(currently deprecated) and FusedLocationProviderClient API too but got the same result as well. I used LocationManager but no improvements at all. I attached the current code down below.
Could anyone show me a better way to access the location information? Thanks in advance :)
private void Locate() {
locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION)
!= PackageManager.PERMISSION_GRANTED &&
ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION)
!= PackageManager.PERMISSION_GRANTED) {
String permits = {
Manifest.permission.ACCESS_FINE_LOCATION,
Manifest.permission.ACCESS_COARSE_LOCATION};
if (!PermissionsAs(this, permits)) {
ActivityCompat.requestPermissions(this, permits, REQ_CODE);
}
return;
} else if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION)
== PackageManager.PERMISSION_GRANTED &&
ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION)
== PackageManager.PERMISSION_GRANTED) {
Location location = locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
if (location != null) {
double lattitude = location.getLatitude();
double longitude = location.getLongitude();
String string = getCompleteAddressString(lattitude, longitude);
System.out.println(string);
System.out.println("Longitude: " + String.valueOf(lattitude) + " Lattitude: " + String.valueOf(lattitude) + "n");
Toast.makeText(getApplicationContext(), "" + longitude + " " + lattitude, Toast.LENGTH_LONG).show();
sendText(lattitude, longitude);
}
}
}
android android-location
add a comment |
I was developing an android app for a while which used to access the current location of a user and then other things. But meanwhile the latitude and longitude return 0.0 & 0.0 and then after a while, it shows some values.
I have had used FusedLocationAPI(currently deprecated) and FusedLocationProviderClient API too but got the same result as well. I used LocationManager but no improvements at all. I attached the current code down below.
Could anyone show me a better way to access the location information? Thanks in advance :)
private void Locate() {
locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION)
!= PackageManager.PERMISSION_GRANTED &&
ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION)
!= PackageManager.PERMISSION_GRANTED) {
String permits = {
Manifest.permission.ACCESS_FINE_LOCATION,
Manifest.permission.ACCESS_COARSE_LOCATION};
if (!PermissionsAs(this, permits)) {
ActivityCompat.requestPermissions(this, permits, REQ_CODE);
}
return;
} else if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION)
== PackageManager.PERMISSION_GRANTED &&
ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION)
== PackageManager.PERMISSION_GRANTED) {
Location location = locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
if (location != null) {
double lattitude = location.getLatitude();
double longitude = location.getLongitude();
String string = getCompleteAddressString(lattitude, longitude);
System.out.println(string);
System.out.println("Longitude: " + String.valueOf(lattitude) + " Lattitude: " + String.valueOf(lattitude) + "n");
Toast.makeText(getApplicationContext(), "" + longitude + " " + lattitude, Toast.LENGTH_LONG).show();
sendText(lattitude, longitude);
}
}
}
android android-location
1
getLastKnownLocation()
doesn't request a location update. It returns the last (recent) request by another app. If no other app has requested the location recently, it will return 0. You're also only using the network provider. UseLocationManager.NETWORK_PROVIDER | LocationManager.GPS_PROVIDER
.
– TheWanderer
Nov 12 at 20:24
thanks. but could you be more specific? @TheWanderer
– Asif-Ul Islam Akash
Nov 12 at 20:27
add a comment |
I was developing an android app for a while which used to access the current location of a user and then other things. But meanwhile the latitude and longitude return 0.0 & 0.0 and then after a while, it shows some values.
I have had used FusedLocationAPI(currently deprecated) and FusedLocationProviderClient API too but got the same result as well. I used LocationManager but no improvements at all. I attached the current code down below.
Could anyone show me a better way to access the location information? Thanks in advance :)
private void Locate() {
locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION)
!= PackageManager.PERMISSION_GRANTED &&
ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION)
!= PackageManager.PERMISSION_GRANTED) {
String permits = {
Manifest.permission.ACCESS_FINE_LOCATION,
Manifest.permission.ACCESS_COARSE_LOCATION};
if (!PermissionsAs(this, permits)) {
ActivityCompat.requestPermissions(this, permits, REQ_CODE);
}
return;
} else if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION)
== PackageManager.PERMISSION_GRANTED &&
ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION)
== PackageManager.PERMISSION_GRANTED) {
Location location = locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
if (location != null) {
double lattitude = location.getLatitude();
double longitude = location.getLongitude();
String string = getCompleteAddressString(lattitude, longitude);
System.out.println(string);
System.out.println("Longitude: " + String.valueOf(lattitude) + " Lattitude: " + String.valueOf(lattitude) + "n");
Toast.makeText(getApplicationContext(), "" + longitude + " " + lattitude, Toast.LENGTH_LONG).show();
sendText(lattitude, longitude);
}
}
}
android android-location
I was developing an android app for a while which used to access the current location of a user and then other things. But meanwhile the latitude and longitude return 0.0 & 0.0 and then after a while, it shows some values.
I have had used FusedLocationAPI(currently deprecated) and FusedLocationProviderClient API too but got the same result as well. I used LocationManager but no improvements at all. I attached the current code down below.
Could anyone show me a better way to access the location information? Thanks in advance :)
private void Locate() {
locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION)
!= PackageManager.PERMISSION_GRANTED &&
ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION)
!= PackageManager.PERMISSION_GRANTED) {
String permits = {
Manifest.permission.ACCESS_FINE_LOCATION,
Manifest.permission.ACCESS_COARSE_LOCATION};
if (!PermissionsAs(this, permits)) {
ActivityCompat.requestPermissions(this, permits, REQ_CODE);
}
return;
} else if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION)
== PackageManager.PERMISSION_GRANTED &&
ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION)
== PackageManager.PERMISSION_GRANTED) {
Location location = locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
if (location != null) {
double lattitude = location.getLatitude();
double longitude = location.getLongitude();
String string = getCompleteAddressString(lattitude, longitude);
System.out.println(string);
System.out.println("Longitude: " + String.valueOf(lattitude) + " Lattitude: " + String.valueOf(lattitude) + "n");
Toast.makeText(getApplicationContext(), "" + longitude + " " + lattitude, Toast.LENGTH_LONG).show();
sendText(lattitude, longitude);
}
}
}
android android-location
android android-location
asked Nov 12 at 20:19
Asif-Ul Islam Akash
189
189
1
getLastKnownLocation()
doesn't request a location update. It returns the last (recent) request by another app. If no other app has requested the location recently, it will return 0. You're also only using the network provider. UseLocationManager.NETWORK_PROVIDER | LocationManager.GPS_PROVIDER
.
– TheWanderer
Nov 12 at 20:24
thanks. but could you be more specific? @TheWanderer
– Asif-Ul Islam Akash
Nov 12 at 20:27
add a comment |
1
getLastKnownLocation()
doesn't request a location update. It returns the last (recent) request by another app. If no other app has requested the location recently, it will return 0. You're also only using the network provider. UseLocationManager.NETWORK_PROVIDER | LocationManager.GPS_PROVIDER
.
– TheWanderer
Nov 12 at 20:24
thanks. but could you be more specific? @TheWanderer
– Asif-Ul Islam Akash
Nov 12 at 20:27
1
1
getLastKnownLocation()
doesn't request a location update. It returns the last (recent) request by another app. If no other app has requested the location recently, it will return 0. You're also only using the network provider. Use LocationManager.NETWORK_PROVIDER | LocationManager.GPS_PROVIDER
.– TheWanderer
Nov 12 at 20:24
getLastKnownLocation()
doesn't request a location update. It returns the last (recent) request by another app. If no other app has requested the location recently, it will return 0. You're also only using the network provider. Use LocationManager.NETWORK_PROVIDER | LocationManager.GPS_PROVIDER
.– TheWanderer
Nov 12 at 20:24
thanks. but could you be more specific? @TheWanderer
– Asif-Ul Islam Akash
Nov 12 at 20:27
thanks. but could you be more specific? @TheWanderer
– Asif-Ul Islam Akash
Nov 12 at 20:27
add a comment |
1 Answer
1
active
oldest
votes
you could use this library, it handles the location providers automatically and give you the best possible location, I'm using it in my application as well and it works well.
Location Provider Library
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53269498%2fgetting-location-takes-a-long-time-in-android-app%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
you could use this library, it handles the location providers automatically and give you the best possible location, I'm using it in my application as well and it works well.
Location Provider Library
add a comment |
you could use this library, it handles the location providers automatically and give you the best possible location, I'm using it in my application as well and it works well.
Location Provider Library
add a comment |
you could use this library, it handles the location providers automatically and give you the best possible location, I'm using it in my application as well and it works well.
Location Provider Library
you could use this library, it handles the location providers automatically and give you the best possible location, I'm using it in my application as well and it works well.
Location Provider Library
answered Nov 12 at 21:05
Shreyansh jain
203
203
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53269498%2fgetting-location-takes-a-long-time-in-android-app%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
getLastKnownLocation()
doesn't request a location update. It returns the last (recent) request by another app. If no other app has requested the location recently, it will return 0. You're also only using the network provider. UseLocationManager.NETWORK_PROVIDER | LocationManager.GPS_PROVIDER
.– TheWanderer
Nov 12 at 20:24
thanks. but could you be more specific? @TheWanderer
– Asif-Ul Islam Akash
Nov 12 at 20:27