在不改变我的位置的情况下获取当前位置的经度和纬度
Posted
技术标签:
【中文标题】在不改变我的位置的情况下获取当前位置的经度和纬度【英文标题】:Getting Current Location Longitude and Latitude without Change my Position 【发布时间】:2012-09-19 01:37:56 【问题描述】:我可以找到当前位置的经纬度。但是这些数据在我更改当前位置之前没有显示。我想在不更改我的位置的情况下获取当前位置的经度和纬度。
package com.example.gps;
import android.app.Activity;
import android.content.Context;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.util.Log;
import android.view.Menu;
import android.widget.Button;
import android.widget.Toast;
import com.google.android.maps.MapController;
import com.google.android.maps.MapView;
public class MainActivity extends Activity
MapView m;
Button b,b1,b2;
MapController mc;double l1;double l2;
@Override
public void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
LocationManager mlocManager =
(LocationManager)getSystemService(Context.LOCATION_SERVICE);
boolean net = mlocManager.isProviderEnabled(LocationManager.GPS_PROVIDER);
Location l = null;
if(net)
l= mlocManager.getLastKnownLocation(LocationManager.GPS_PROVIDER);
if(l!=null)
l1 = l.getLongitude();
l2 = l.getLatitude();
Toast.makeText(getApplicationContext(),l1+".."+l2, Toast.LENGTH_LONG).show();
LocationListener mlocListener = new MyLocationListener();
mlocManager.requestLocationUpdates( LocationManager.GPS_PROVIDER, 0, 0, mlocListener);
public class MyLocationListener implements LocationListener
@Override
public void onLocationChanged(Location loc)
loc.getLatitude();
loc.getLongitude();
String Text = "My current location is: "+
"Latitud = " + loc.getLatitude() +
"Longitud = " + loc.getLongitude();
Toast.makeText( getApplicationContext(),
Text,
Toast.LENGTH_SHORT).show();
@Override
public void onProviderDisabled(String provider)
Toast.makeText( getApplicationContext(),
"Gps Disabled",
Toast.LENGTH_SHORT ).show();
@Override
public void onProviderEnabled(String provider)
Toast.makeText( getApplicationContext(),
"Gps Enabled",
Toast.LENGTH_SHORT).show();
@Override
public void onStatusChanged(String provider, int status, Bundle extras)
由于此代码从 onLocationChanged(Location loc) 方法返回数据,因此在我的设备上安装后,我不会在不更改我的位置的情况下获取数据。但是我需要纬度,经度而不更改我的位置。是否可能。请给解决办法
【问题讨论】:
在 requestLocationUpdates(...) 之后尝试获取纬度 n 经度,你会立即得到 为什么不使用 lastKnownPosition?这应该由 LocationManager 提供... ***.com/a/17857993/1318946 【参考方案1】:试试这个代码:
locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
// Define the criteria how to select the locatioin provider -> use
// default
Criteria criteria = new Criteria();
provider = locationManager.getBestProvider(criteria, false);
Location location = locationManager.getLastKnownLocation(provider);
// Initialize the location fields
if (location != null)
System.out.println("Provider " + provider + " has been selected.");
onLocationChanged(location);
else
latituteField.setText("Location not available");
longitudeField.setText("Location not available");
System.out.println("Location not avilable");
/* Request updates at startup */
@Override
protected void onResume()
super.onResume();
locationManager.requestLocationUpdates(provider, 400, 1, this);
/* Remove the locationlistener updates when Activity is paused */
@Override
protected void onPause()
super.onPause();
locationManager.removeUpdates(this);
@Override
public void onLocationChanged(Location location)
double lat = (double) (location.getLatitude());
double lng = (double) (location.getLongitude());
latituteField.setText(String.valueOf(lat));
longitudeField.setText(String.valueOf(lng));
Log.i(TAG, "Lattitude:" +lat);
Log.i(TAG, "Longitude:" +lng);
【讨论】:
当我将此代码用于新设备时,它什么也得不到。我认为在这种情况下 getLastKnownLocation() 方法返回 null。但我想要用户登录我的应用程序时的当前位置纬度经度。我得到移动我的设备后的数据,但我需要数据而不改变我的位置。请帮助我......以上是关于在不改变我的位置的情况下获取当前位置的经度和纬度的主要内容,如果未能解决你的问题,请参考以下文章
在不使用地图Android的情况下获取用户(纬度,经度)位置[重复]
在不使用地图 android 的情况下从邮政编码中获取纬度和经度
如何在没有互联网连接的情况下在android中获取当前纬度和经度?