android怎么用经纬度定位,android 根据经纬度定位所在城市

转自http://www.thinksaas.cn/group/topic/215488/,更改了他默认写死的经纬度,可以得到正确的定位

requires ACCESS_COARSE_LOCATION or ACCESS_FINE_LOCATION permission.

package com.studio.android.chp08.ex01;

import java.io.IOException;

import java.util.List;

import android.app.Activity;

import android.content.Context;

import android.location.Address;

import android.location.Criteria;

import android.location.Geocoder;

import android.location.Location;

import android.location.LocationListener;

import android.location.LocationManager;

import android.os.Bundle;

import android.widget.TextView;

public class CurrentLocation extends Activity {

/** Called when the activity is first created. */

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

LocationManager locationManager;

String serviceName = Context.LOCATION_SERVICE;

locationManager = (LocationManager)getSystemService(serviceName);

// String provider = LocationManager.GPS_PROVIDER;

String provider = LocationManager.NETWORK_PROVIDER;

Criteria criteria = new Criteria();

criteria.setAccuracy(Criteria.ACCURACY_FINE);

criteria.setAltitudeRequired(false);

criteria.setBearingRequired(false);

criteria.setCostAllowed(true);

criteria.setPowerRequirement(Criteria.POWER_LOW);

// String provider = locationManager.getBestProvider(criteria, true);

Location location = locationManager.getLastKnownLocation(provider);

updateWithNewLocation(location);

locationManager.requestLocationUpdates(provider, 2000, 10,

locationListener);

}

private final LocationListener locationListener = new LocationListener() {

public void onLocationChanged(Location location) {

updateWithNewLocation(location);

}

public void onProviderDisabled(String provider){

updateWithNewLocation(null);

}

public void onProviderEnabled(String provider){ }

public void onStatusChanged(String provider, int status,

Bundle extras){ }

};

private void updateWithNewLocation(Location location) {

double lat = 0;

double lng = 0;

String latLongString;

TextView myLocationText;

myLocationText = (TextView) findViewById(R.id.myLocationText);

if (location != null) {

lat = location.getLatitude();

lng = location.getLongitude();

DecimalFormat df = new  DecimalFormat("#.###");

//lat = df.format(lat);

//lng = df.format(lng);

//latLongString = "纬度:" + df.format(lat) + "n经度:" + df.format(lng);

latLongString = "纬度:" + lat + "n经度:" + lng;

} else {

latLongString = "无法获取地理信息";

}

List

addList = null;

Geocoder ge = new Geocoder(this);

try {

//addList = ge.getFromLocation(24.463, 118.1, 1);

addList = ge.getFromLocation(lat, lng, 1);

} catch (IOException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

if(addList!=null && addList.size()>0){

for(int i=0; i

Address ad = addList.get(i);

latLongString +="n";

latLongString += ad.getCountryName() +";"+ ad.getLocality();

}

}

myLocationText.setText("您当前的位置是:n"+latLongString);

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值