简体   繁体   English

位置对象在Google Maps Android中返回null

[英]Location object returning null in google maps android

I am working on a project where the current latitude and longitude are taken from another class.When i switch off the phone or open the app the next day , the current latitude and longitude are shown as 0.0, which is because the location object is becoming null.But as soon as i open the app again the map is shown correctly. 我正在一个项目中,当前的纬度和经度来自另一个班级。第二天我关闭手机或打开应用程序时,当前的纬度和经度显示为0.0,这是因为位置对象正在变为null。但是,一旦我再次打开应用程序,地图就会正确显示。

The code in the main class: 主类中的代码:

public void getcurrentlocation()
{
    gps=new GPSTracker(MainActivity.this);
    if(gps.canGetLocation())
    {
        current_latitude=gps.getLatitude();
        current_longitude=gps.getLongitude();
        placemarkersonmap();
    }
    else
    {
    gps.showSettingsAlert();
    }
}
public void placemarkersonmap()
{

    googleMap.setMyLocationEnabled(true);
    googleMap.getUiSettings().setMyLocationButtonEnabled(true);

    LatLng latLng = new LatLng(current_latitude, current_longitude);

    Toast.makeText(getApplicationContext(),current_latitude+" "+current_longitude,Toast.LENGTH_LONG).show();

    googleMap.moveCamera(CameraUpdateFactory.newLatLngZoom(latLng, 12f));
    googleMap.animateCamera(CameraUpdateFactory.newLatLngZoom(latLng, 12f));

    MarkerOptions marker = new MarkerOptions().position(new LatLng(8.505439, 76.971293));


 googleMap.addMarker(marker);

}

The helper class for retrieving current latitude and longitude ,GPSTracker class: 用于检索当前纬度和经度的帮助类,GPSTracker类:

package com.example.marinamapseg;

import android.app.AlertDialog;
import android.app.Service;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.os.IBinder;
import android.provider.Settings;
import android.util.Log;
import android.widget.Toast;

public class GPSTracker extends Service implements LocationListener {

    private final Context mContext;

    // flag for GPS status
    boolean isGPSEnabled = false;

    // flag for network status
    boolean isNetworkEnabled = false;

    // flag for GPS status
    boolean canGetLocation = false;

    Location location; // location
    double latitude; // latitude
    double longitude; // longitude

    // The minimum distance to change Updates in meters
    private static final long MIN_DISTANCE_CHANGE_FOR_UPDATES = 10; // 10 meters

    // The minimum time between updates in milliseconds
    private static final long MIN_TIME_BW_UPDATES = 1000 * 60 * 1; // 1 minute

    // Declaring a Location Manager
    protected LocationManager locationManager;

    public GPSTracker(Context context) {
        this.mContext = context;
        getLocation();
    }

    public Location getLocation() {
        try {


            locationManager = (LocationManager) mContext
                    .getSystemService(LOCATION_SERVICE);

            // getting GPS status
            isGPSEnabled = locationManager
                    .isProviderEnabled(LocationManager.GPS_PROVIDER);

            // getting network status
            isNetworkEnabled = locationManager
                    .isProviderEnabled(LocationManager.NETWORK_PROVIDER);

            if (!isGPSEnabled && !isNetworkEnabled) {
                Toast.makeText(getApplicationContext(),"NO PROVIDER ENABLED",Toast.LENGTH_LONG).show();
            } else {
                this.canGetLocation = true;
                // First get location from Network Provider
                if (isNetworkEnabled) {
                    locationManager.requestLocationUpdates(
                            LocationManager.NETWORK_PROVIDER,
                            0,
                            0, this);
                    Log.d("Network", "Network");
                    if (locationManager != null) {
                        location = locationManager
                                .getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
                        if (location != null) {
                            latitude = location.getLatitude();
                            longitude = location.getLongitude();
                        }
                    }
                }
                // if GPS Enabled get lat/long using GPS Services
                if (isGPSEnabled) {
                    if (location == null) {
                        locationManager.requestLocationUpdates(
                                LocationManager.GPS_PROVIDER,
                                0,
                                0, this);
                        Log.d("GPS Enabled", "GPS Enabled");
                        if (locationManager != null) {
                            location = locationManager
                                    .getLastKnownLocation(LocationManager.GPS_PROVIDER);
                            if (location != null) {
                                latitude = location.getLatitude();
                                longitude = location.getLongitude();
                            }
                        }
                    }
                }
            }

        } catch (Exception e) {
            e.printStackTrace();
        }

        return location;
    }

    /**
     * Stop using GPS listener
     * Calling this function will stop using GPS in your app
     * */
    public void stopUsingGPS(){
        if(locationManager != null){
            locationManager.removeUpdates(GPSTracker.this);
        }      
    }

    /**
     * Function to get latitude
     * */
    public double getLatitude(){
        if(location != null){
            latitude = location.getLatitude();
        }

        // return latitude
        return latitude;
    }

    /**
     * Function to get longitude
     * */
    public double getLongitude(){
        if(location != null){
            longitude = location.getLongitude();
        }

        // return longitude
        return longitude;
    }

    /**
     * Function to check GPS/wifi enabled
     * @return boolean
     * */
    public boolean canGetLocation() {
        return this.canGetLocation;
    }

    /**
     * Function to show settings alert dialog
     * On pressing Settings button will lauch Settings Options
     * */
    public void showSettingsAlert(){
        AlertDialog.Builder alertDialog = new AlertDialog.Builder(mContext);

        // Setting Dialog Title
        alertDialog.setTitle("GPS is settings");

        // Setting Dialog Message
        alertDialog.setMessage("GPS is not enabled. Do you want to go to settings menu?");

        // On pressing Settings button
        alertDialog.setPositiveButton("Settings", new DialogInterface.OnClickListener() {
            public void onClick(DialogInterface dialog,int which) {
                Intent intent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
                mContext.startActivity(intent);
            }
        });

        // on pressing cancel button
        alertDialog.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
            public void onClick(DialogInterface dialog, int which) {
            dialog.cancel();
            }
        });

        // Showing Alert Message
        alertDialog.show();
    }

    @Override
    public void onLocationChanged(Location location) {
    }

    @Override
    public void onProviderDisabled(String provider) {
    }

    @Override
    public void onProviderEnabled(String provider) {
    }

    @Override
    public void onStatusChanged(String provider, int status, Bundle extras) {
    }

    @Override
    public IBinder onBind(Intent arg0) {
        return null;
    }

}

I tried setting the minimum time between updates and the minimum distance between updates as 0 for the requestLocationUpdates method of locationmanager .But that didnt help either. 我尝试为locationmanagerrequestLocationUpdates方法将两次更新之间的最短时间和两次更新之间的最小距离设置为0,但这都没有帮助。

So the issue is why does the location object return null when i open the app the next day.It also works fine as soon as the close the app and restart it again.Please help! 因此,问题在于为什么第二天我打开应用程序时location对象返回空值。关闭应用程序并再次重新启动后它也可以正常工作。请帮忙!

For getting updates make use of the LocationListener interface you have implemented instead of using 要获取更新,请使用已实现的LocationListener接口,而不是使用

if (locationManager != null) {
    location = locationManager
                   .getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
    if (location != null) {
        latitude = location.getLatitude();
        longitude = location.getLongitude();
    }
}

do the following in your onLocationChanged() 在您的onLocationChanged()执行以下操作

@Override
public void onLocationChanged(Location location) {
    latitude = location.getLatitude();
    longitude = location.getLongitude();
}

This makes sure that when a new location update is available it is stored in your respective variables. 这样可以确保在有新的位置更新可用时,将其存储在您各自的变量中。

PS: For getting location updates in the background, make sure that your service is not terminated when the app is closed. PS:要在后台获取位置更新,请确保在关闭应用程序时不会终止您的服务。 You could also make use of SharedPreferences if you want to persist changes even when the phone is restarted. 如果您要保留更改,即使在电话重新启动时,也可以使用SharedPreferences

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM