Getting location takes a long time in Android App
up vote
0
down vote
favorite
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);
}
}
}
add a comment |
up vote
0
down vote
favorite
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);
}
}
}
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 |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
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);
}
}
}
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);
}
}
}
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
up vote
0
down vote
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 |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
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 |
up vote
0
down vote
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 |
up vote
0
down vote
up vote
0
down vote
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 |
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