Android中获取当前位置的三种方式:
1GPS定位
获取GPS的Location Provider;将此Provider传入到requestLocationUpdates()方法,让Android系统获知搜索位置方式;创建实现了GpsStatusListener接口的对象,重写onGpsStatusChanged()方法,向LocationManager添加次监听器
2基站定位
此类位置的获取有赖于手机无线通讯信号,当手机处在信号覆盖范围内,手机可以获得该区域(即通讯术语中的“小区”)的识别号。因为这些识别号是惟一的,因此可以将识别号和地理坐标对应起来,因此根据识别号就可以知道地理位置。但是误差比较大。
在Android当中,大部分和通讯网络相关的信息都需要经过一项系统服务,即TelephoneManager来获得。
3网络定位(wife定位)
其原理是首先收集每个WIFI无线接入点的位置,对每个无线路由器进行唯一的标识,在数据库中注明这些接入点的具体位置。 使用时,一旦发现有WI-FI接入点,则进入到数据中查看匹配的记录,进而得到位置信息。
WIFI定位主要取决于节点(node)的物理地址(mac address)。与提供TelephoneManager一样,Android也提供了获取WIFI信息的接口:WifiManager。
您好,安卓时间是否依赖GPS,答案是肯定的。安卓系统使用GPS卫星定位技术来确定当前的时间和日期。GPS卫星定位技术可以提供准确的时间和日期,从而使安卓系统可以正确地设置当前的时间和日期。GPS卫星定位技术可以提供准确的时间和日期,从而使安卓系统可以正确地设置当前的时间和日期。此外,GPS卫星定位技术还可以提供其他重要的信息,如当前的位置、速度和方向等。因此,安卓系统依赖GPS卫星定位技术来确定当前的时间和日期,以及其他重要的信息。
public class ServiceLocationGPS extends Service implements AMapLocationListener {
private GlobalApp app;
private LocationManagerProxy aMapLocManager = null;
private AMapLocation aMapLocation;// 用于判断定位超时
public Timer timer;
TimerTask task;
public Integer period = 10;
public Integer count = 0;
@Override
public IBinder onBind(Intent arg0) {
// TODO Auto-generated method stub
return null;
}
@Override
public void onCreate() {
app = (GlobalApp) getApplication();
start();
superonCreate();
}
@Override
public void onDestroy() {
stoptime();
superonDestroy();
}
@Override
@Deprecated
public void onStart(Intent intent, int startId) {
// TODO Auto-generated method stub
superonStart(intent, startId);
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
// TODO Auto-generated method stub
return superonStartCommand(intent, flags, startId);
}
@Override
public void onLocationChanged(Location arg0) {
// TODO Auto-generated method stub
}
@Override
public void onProviderDisabled(String arg0) {
// TODO Auto-generated method stub
}
@Override
public void onProviderEnabled(String arg0) {
// TODO Auto-generated method stub
}
@Override
public void onStatusChanged(String arg0, int arg1, Bundle arg2) {
// TODO Auto-generated method stub
}
public void startLocation() {
if (aMapLocManager == null) {
aMapLocManager = LocationManagerProxy
getInstance(ServiceLocationGPSthis);
Systemoutprintln("startLocation");
aMapLocManagerrequestLocationUpdates(
LocationProviderProxyAMapNetwork, -1, 10, this);
} else {
aMapLocManagerrequestLocationUpdates(
LocationProviderProxyAMapNetwork, -1, 10, this);
}
public void start() {
initSchedule();
// 10秒以后启动任务;
startSchedule(10);
}
@Override
public void onLocationChanged(AMapLocation location) {
if (location != null) {
thisaMapLocation = location;// 判断超时机制
Double geoLat = locationgetLatitude();
Double geoLng = locationgetLongitude();
String cityCode = "";
String desc = "";
Bundle locBundle = locationgetExtras();
if (locBundle != null) {
cityCode = locBundlegetString("citycode");
desc = locBundlegetString("desc");
}
Systemoutprintln("onLocationChanged," + geoLat + "," + geoLng);
// aMapLocManagerremoveUpdates(this);
//stopLocation();
}
}
/
销毁定位
/
public void stopLocation() {
if (aMapLocManager != null) {
aMapLocManagerremoveUpdates(this);
aMapLocManagerdestory();
}
aMapLocManager = null;
}
/
开启定时任务;
/
public void startSchedule(int delay) {
if (timer != null && task != null)
// 10秒以后执行任务;
timerschedule(task, delay 1000, period 1000);
}
public void initSchedule() {
if (timer == null)
timer = new Timer();
if (task == null)
task = new TimerTask() {
@Override
public void run() {
startLocation();
}
};
}
private void stoptime() {
if (timer != null) {
timercancel();
timer = null;
}
if (task != null) {
taskcancel();
task = null;
}
}
}
内置的GPS的信息?
androidlocationGpsStatus;
androidlocationLocation;
androidlocationLocationListener;
androidlocationLocationManager;
注册GPS Listener,然后就可以取到了。
开启定位系统后,获取位置信息是自动的。
手机定位技术是指利用GPS定位技术或者基站定位技术对手机进行定位的一种技术。基于GPS的定位方式是利用手机上的GPS定位模块将自己的位置信号发送到定位后台来实现手机定位的。基站定位则是利用基站对手机的距离的测算距离来确定手机位置的。后者不需要手机具有GPS定位能力,但是精度很大程度依赖于基站的密度,有时误差会超过一公里。前者定位精度较高。此外还有利用Wifi在小范围内定位的方式。
以上就是关于android开发中怎么获取当前位置的坐标全部的内容,包括:android开发中怎么获取当前位置的坐标、安卓时间确认是否依赖gps、android 怎么实现后台注册一个service,定时定位的功能等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)