如何在android中获取当前坐标/位置
Posted
技术标签:
【中文标题】如何在android中获取当前坐标/位置【英文标题】:How to get current coordinates/location in android 【发布时间】:2017-04-18 20:40:25 【问题描述】:几天以来,我一直在尝试在android中获取当前位置,但我还没有找到解决方案。
我知道有关于此的类似主题,但在我的情况下,它的代码不起作用。有没有人已经解决了这个问题并可以帮助我?
我添加了一些我做过的测试。 这是 GPS Tracker 类。
package utility;
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 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 = 1; // 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)
// no network provider is enabled
else
this.canGetLocation = true;
// First get location from Network Provider
if (isNetworkEnabled)
try
locationManager.requestLocationUpdates(LocationManager.NETWORK_PROVIDER, MIN_TIME_BW_UPDATES, MIN_DISTANCE_CHANGE_FOR_UPDATES, this);
catch (SecurityException e)
Log.d("Network", "Network");
if (locationManager != null)
try
location = locationManager
.getLastKnownLocation(LocationManager.NETWORK_PROVIDER);
catch (SecurityException e)
if (location != null)
latitude = location.getLatitude();
longitude = location.getLongitude();
// if GPS Enabled get lat/long using GPS Services
if (isGPSEnabled)
if (location == null)
try
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 (SecurityException s)
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)
try
locationManager.removeUpdates(GPSTracker.this);
catch (SecurityException e)
/**
* 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 Settings");
// Setting Dialog Message
alertDialog.setMessage("GPS is not active. Do you want to open?");
// 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;
我在我的活动中实例化了这个类,如下:
import android.os.Bundle;
import android.app.Activity;
import android.widget.ImageButton;
import android.widget.TextView;
import utility.GPSTracker;
public class AroundMeActivity extends Activity
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_around_me);
TextView location_text = (TextView) findViewById(R.id.location_text);
GPSTracker gps;
double latitude = 0.0;
double longitude = 0.0;
gps = new GPSTracker(AroundMeActivity.this);
// check if GPS enabled
if(gps.canGetLocation())
latitude = gps.getLatitude();
longitude = gps.getLongitude();
else
gps.showSettingsAlert();
location_text.setText(latitude + " " + longitude);
纬度和经度的结果都是 0.0。
提前谢谢你们!!!
【问题讨论】:
Fused Location Provider 是推荐的方式,除非您有某些理由避免使用 Google Play 服务。 (就像希望您的应用程序在中国工作一样。)您可以关注official documentation 和example in the Documentation section。请注意getLastLocation()
可能会返回null
或旧且不相关的位置,因此最好请求更新。如果您不需要持续更新,您可以随时停止它们。
这不是我想要的。它从当前位置开始计算位置更新,但我需要在精确的瞬间检索当前坐标。
【参考方案1】:
使用安卓LocationMannager
查看有关Android GPS, Location Manager 的androidhive 教程以开始使用
【讨论】:
是的,我检查了 androidhive 作为第一个教程,我一步一步地跟着它,但它没有用。 好吧,那是因为它是一个糟糕的教程。忽略它。 (更多详情in this blog post。 我会再次检查他们两个。你们中有人尝试过使用其中的一些代码吗? 不是真的,两者都是一样的,差别很小! @MarkusKauppinen 博客文章首先显示了它所讨论的代码(如在 androidhive 上),然后指出了它的问题。最后给出了一个更好的解决方案。【参考方案2】:这是一个很棒的库,非常易于使用且轻量级:https://github.com/mrmans0n/smart-location-lib
只需使用 gradle 编译即可。
【讨论】:
该指南很好,但编译后应用程序崩溃。你有我可以在我的应用程序中使用的示例代码来测试如何检索当前的 gps 坐标吗? 不,不幸的是我没有了,我以前用过。但是应该很简单,尽管我无法帮助集成。在他们的 github 存储库中询问他们。以上是关于如何在android中获取当前坐标/位置的主要内容,如果未能解决你的问题,请参考以下文章