0

我需要使用 GPS 获取 myLocation,如何获取?我尝试下一个代码,但它永远不会起作用。当我重新启动手机并运行应用程序时,它不起作用。

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;

public class GPSTraker 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 = 1; // 10 meters

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

// Declaring a Location Manager
protected LocationManager locationManager;

public GPSTraker(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) {
            // no network provider is enabled
        } else {
            this.canGetLocation = true;
            if (isNetworkEnabled) {
                locationManager.requestLocationUpdates(
                        LocationManager.NETWORK_PROVIDER,
                        MIN_TIME_BW_UPDATES,
                        MIN_DISTANCE_CHANGE_FOR_UPDATES, 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,
                            MIN_TIME_BW_UPDATES,
                            MIN_DISTANCE_CHANGE_FOR_UPDATES, 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(GPSTraker.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;

}
 }

并使用它:

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {
    v = inflater.inflate(R.layout.fragment_near_new, null);
    elvMain = (ExpandableListView) v.findViewById(R.id.elvMain);
    GPSTraker gps = new GPSTraker(getActivity());

    if (gps.canGetLocation()) {
        myLat = gps.getLatitude();
        myLong = gps.getLongitude();
        Log.d("myDebug", "new get Location +" + myLat);
        // \n is for new line

    } else {
        // can't get location
        // GPS or Network is not enabled
        // Ask user to enable GPS/network in settings
        Log.d("myDebug", "Can not get location");
        gps.showSettingsAlert();
    }


    return v;
}

有什么问题?也许有人有一些想法如何解决这个问题?重新启动手机后,该程序 也无法获取我的位置。

4

1 回答 1

1

您想要连续的位置更新还是只需要一个位置?

通过“GPS,无网络”,我假设即使网络不可用,您也想获得一个位置,而不是永远不应该使用网络位置。

一些基础知识LocationManager

在启动时,您需要请求一个实例,LocationManager然后调用RequestLocationUpdates(),将接收位置更新的类作为参数传递。当有新位置可用时,LocationManager将调用onLocationChanged(),将当前位置作为参数传递。

查看您的代码,您拥有一切,但在错误的地方:

  • 您方法中的大部分代码getLocation()都应该进入onCreate().
  • 调用requestLocationUpdates()应该进入您的服务onStartCommand()方法。您应该通过调用removeUpdates()您的stopSelf()方法来取消注册,以便在您的服务停止时释放 GPS。(对于 Activity,分别在onResume()和中执行此操作onPause()。否则,即使在服务停止/用户导航离开 Activity 之后,它也会保持 GPS 唤醒并耗尽电池,直到系统终止应用程序。)
  • 用于处理位置更新的代码(您已放置在 中onCreateView())应该进入onLocationChanged().

我看你也在打电话LocationManager.getLastKnownLocation()。这将获得LocationManager之前获得的最后一个位置,但不会启动 GPS。如果之前没有其他应用程序请求位置更新(使用requestLocationUpdates()),则它没有要报告的位置,并且如果设备在获得最后一个位置后移动,您将获得一个过期的位置。

如果您需要以可靠的方式和最新信息更新单个位置,请按照上面的说明并removeUpdates()在您的onLocationChanged()方法中调用 to。这将在第一次位置更新后释放 GPS。请注意,您可能需要等待一段时间才能更新位置,因为 GPS 可能需要一些时间才能启动。

于 2013-09-20T10:51:54.937 回答