推荐阅读:
手机定位的三种方式:网络定位,基站定位,GPS定位
网络定位,手机连上wifi 2g 3g的时候,手机会有一个ip,误差很大
基站定位,精确度与基站的多少有关,几十米到几公里的误差
GPS定位,至少需要三颗卫星才能定位,在空旷的地方准确
手机使用A-GPS需要网络来辅助定位,定位速度快,网络记录了上次的卫星轨道,
获取LocationManager对象,通过getSystemService(LOCATION_SERVICE)
调用LocationManager对象的requestLocationUpdates()方法,请求位置更新,参数:
定位方式(“gps”),更新时间(60000),更新距离(50),LocationListener对象
LocationListener是一个接口,需要做它的实现类
定义MyLocationListener实现LocationListener,实现它下面的方法
onLocationChanged(),当位置改变的时候回调,传递进来一个Location对象
调用location对象的getLongitude()方法,得到经度
调用Location对象的getLatitude()方法,得到维度
调用Location对象的getAccuracy()方法,得到精确度
onStatusChanged(),当状态改变的时候回调,关闭 开启
onProviderEnabled(),当某一个位置提供者可用了
onProviderDisabled(),当某一个位置提供者不可用了
当activity销毁的时候,取消监听位置
重写activity的onDestroy()方法
调用LocationManager对象的removeUpdates(),取消监听,参数:LocationListener对象
把LocationListener对象置为null,垃圾回收
需要的权限
android.permission.ACCESS_FINE_LOCATION 获取精准位置
android.permission.ACCESS_COARSE_LOCATION 获取粗略的位置
android.permission.ACCESS_MOCK_LOCATION 获取模拟的位置(模拟器开发的时候)
模拟器上,ddms里面发送以下位置,才能显示
国家对坐标进行了加偏处理,变成火星坐标,需要国家测绘局的插件,网上有火星坐标转换代码
package com.tsh.mylocation;import android.app.Activity;import android.location.Location;import android.location.LocationListener;import android.location.LocationManager;import android.os.Bundle;import android.view.Menu;import android.view.MenuItem;import android.widget.Toast;public class MainActivity extends Activity {private LocationManager lm;private LocationListener listener;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);//获取位置管理器lm=(LocationManager) getSystemService(LOCATION_SERVICE);listener=new MyLocationListener();lm.requestLocationUpdates("gps", 0, 0, listener);}private class MyLocationListener implements LocationListener{@Overridepublic void onLocationChanged(Location location) {//获取经度String longitude="经度:"+location.getLongitude();String latitude="纬度:"+location.getLatitude();String acc="精确度:"+location.getAccuracy();Toast.makeText(MainActivity.this, longitude+latitude+acc, 1).show();}@Overridepublic void onStatusChanged(String provider, int status, Bundle extras) {}@Overridepublic void onProviderEnabled(String provider) {}@Overridepublic void onProviderDisabled(String provider) {}}}
以上所述是小编给大家介绍的Android手机卫士手机定位的原理,希望对大家有所帮助!
新闻热点
疑难解答