У меня есть этот класс, который я получаю лат и лон от моего GPS
public class GpsCoord extends AppCompatActivity implements LocationListener {
private LocationManager locationManager;
double longtitude;
double latitude;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
if (ActivityCompat.checkSelfPermission(this, android.Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(this, android.Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
// TODO: Consider calling
// ActivityCompat#requestPermissions
// here to request the missing permissions, and then overriding
// public void onRequestPermissionsResult(int requestCode, String[] permissions,
// int[] grantResults)
// to handle the case where the user grants the permission. See the documentation
// for ActivityCompat#requestPermissions for more details.
return;
}
Location location = locationManager.getLastKnownLocation(locationManager.NETWORK_PROVIDER);
onLocationChanged(location);
}
@Override
public void onLocationChanged(Location location) {
longtitude=location.getLongitude();
latitude=location.getLatitude();
}
@Override
public void onStatusChanged(String provider, int status, Bundle extras) {
}
@Override
public void onProviderEnabled(String provider) {
}
@Override
public void onProviderDisabled(String provider) {
}
public double getLongtitude() {
return longtitude;
}
public double getLatitude() {
return latitude;
}
}
Но когда я создаю экземпляр этого класса и пытаюсь получить значения lat и lon с помощью методов получения, он дает мне результат "lat and lon = 0.0". Внутри класса GpsCoord все работает отлично. Я также пытался сделать их статический и все еще получил ту же ошибку