欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android Location服务之LocationManager案例详解

程序员文章站 2022-07-02 22:30:43
上次介绍了位置服务中的geocoder,这次就来介绍一下locationmanager。locationmanager系统服务是位置服务的核心组件,它提供了一系列方法来处理与位置相关的问题,包括查询上...

上次介绍了位置服务中的geocoder,这次就来介绍一下locationmanager。locationmanager系统服务是位置服务的核心组件,它提供了一系列方法来处理与位置相关的问题,包括查询上一个已知位置、注册和注销来自某个locationprovider的周期性的位置更新、注册和注销接近某个坐标时对一个已定义的intent的触发等。今天我们就一起探讨一下locationmanager的简单应用。

在进入正题之前,朋友们需要了解与locationmanager相关的两个知识点:

provider:locationmanager获取位置信息的途径,常用的有两种:gps和network。gps定位更精确,缺点是只能在户外使用,耗电严重,并且返回用户位置信息的速度远不能满足用户需求。network通过基站和wi-fi信号来获取位置信息,室内室外均可用,速度更快,耗电更少。为了获取用户位置信息,我们可以使用其中一个,也可以同时使用两个。

locationlistener:位置监听器接口,定义了常见的provider状态变化和位置的变化的方法,我们需要实现此接口,完成自己的处理逻辑,然后让locationmanager注册此监听器,完成对各种状态的监听。

既然上面讲到位置服务的核心是locationmanager,那么我们如何取得一个locationmanager呢?像其他系统服务一样,通过以下方式即可得到一个locationmanager实例:

locationmanager locmgr = (locationmanager) getsystemservice(context.location_service);

对象实例是获取到了,可是怎么应用呢?下面就通过一个示例具体演示一下。

我们新建一个location项目。因为示例是基于地图服务的,所以创建时别忘了build target要选中google apis这一项。

然后修改/res/layout/main.xml,代码如下:

<?xml version="1.0" encoding="utf-8"?>
<framelayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
	<com.google.android.maps.mapview
		android:id="@+id/mapview"
		android:layout_width="fill_parent"
    	android:layout_height="fill_parent"
		android:clickable="true"
		android:apikey="your apikey goes here"/>
	<button
		android:id="@+id/removeupdates"
		android:layout_width="fill_parent"
    	android:layout_height="wrap_content"
    	android:text="removeupdates"/>
</framelayout>

然后我们来看以下mainactivity.java文件,代码如下:

package com.scott.location;
 
import android.content.context;
import android.location.location;
import android.location.locationlistener;
import android.location.locationmanager;
import android.os.bundle;
import android.view.view;
import android.widget.button;
import android.widget.imageview;
import android.widget.toast;
 
import com.google.android.maps.geopoint;
import com.google.android.maps.mapactivity;
import com.google.android.maps.mapview;
import com.google.android.maps.mapview.layoutparams;
 
public class mainactivity extends mapactivity {
	
    private mapview mapview;
	
    @override
    public void oncreate(bundle savedinstancestate) {
        super.oncreate(savedinstancestate);
        setcontentview(r.layout.main);
        
        mapview = (mapview) findviewbyid(r.id.mapview);
        mapview.getcontroller().setzoom(17);
        
        final locationmanager locmgr = (locationmanager) getsystemservice(context.location_service);
        
        //获取缓存中的位置信息
        location location = locmgr.getlastknownlocation(locationmanager.gps_provider);
        if (location != null) {
        	markcurrlocation(location);
        }
        
        final mylocationlistener listener = new mylocationlistener();
        //注册位置更新监听(最小时间间隔为5秒,最小距离间隔为5米)
        locmgr.requestlocationupdates(locationmanager.gps_provider, 5000, 5, listener);
        
        button removeupdates = (button) findviewbyid(r.id.removeupdates);
        removeupdates.setonclicklistener(new view.onclicklistener() {
        	@override
        	public void onclick(view v) {
        		//停止监听
        		locmgr.removeupdates(listener);
        	}
        });
    }
    
    /**
     * 标记当前位置
     * @param location
     */
    private void markcurrlocation(location location) {
    	mapview.removeallviews();	//清除地图上所有标记视图
    	geopoint point = new geopoint((int) (location.getlatitude() * 1e6), (int) (location.getlongitude() * 1e6));
		mapview.getcontroller().animateto(point);
		final mapview.layoutparams params = new mapview.layoutparams(layoutparams.wrap_content,
				layoutparams.wrap_content, point, layoutparams.bottom_center);
		final imageview marker = new imageview(mainactivity.this);
		marker.setimageresource(r.drawable.marker);
		marker.setonclicklistener(new view.onclicklistener() {
			@override
			public void onclick(view v) {
				toast.maketext(getapplicationcontext(), "hello, location manager!", toast.length_short).show();
			}
		});
		mapview.addview(marker, params);
	}
 
	@override
	protected boolean isroutedisplayed() {
		return false;
	}
	
	private final class mylocationlistener implements locationlistener {
 
		@override
		public void onlocationchanged(location location) {
			markcurrlocation(location);
		}
 
		@override
		public void onstatuschanged(string provider, int status, bundle extras) {
			//provider状态在可用、暂不可用、无服务三个状态之间直接切换时触发此函数
		}
 
		@override
		public void onproviderenabled(string provider) {
			//provider被enable时触发此函数,比如gps被打开
		}
 
		@override
		public void onproviderdisabled(string provider) {
			//provider被disable时触发此函数,比如gps被关闭
		}
		
	}
}

因为用到了地图服务,所以需要在androidmanifest.xml中的application标签之间加入google map library声明:

<uses-library android:name="com.google.android.maps" />

然后加入位置服务所需的权限:

<uses-permission android:name="android.permission.access_fine_location" />

这里朋友们需要注意:如果使用gps_provider或者同时使用gps_provider和network_provider,则只需声明access_fine_location权限,它对于上述两个provider都是有效的;而access_coarse_location权限只针对network_provider。

如果是在模拟器里调试的话,我们可以用以下两种方法设置一个模拟的坐标值:geo命令和ddms。

先来说一下geo命令,它需要telnet到本机的5554端口,然后在命令行下输入geo fix命令,参数可附带经度、纬度和海拔(可选)。

具体操作如图:

Android Location服务之LocationManager案例详解

Android Location服务之LocationManager案例详解

如果朋友用的系统是windows7的话,会遇到一些小小的麻烦,因为windows7默认是没有装telnet服务,所以我们需要手动安装一下,点击“开始->控制面板->程序->程序和功能”,然后再弹出的窗口左侧点击“打开或关闭windows功能”,会弹出一下界面,选中“telnet客户端”和“telnet服务端”即可。如图:

Android Location服务之LocationManager案例详解

不过,使用geo命令还是挺麻烦的,adt提供了一个设置模拟坐标的界面,打开“emulator control”视图,即可看到一下界面:

Android Location服务之LocationManager案例详解

如果设置了模拟坐标后,在模拟器的状态栏就会出现一个雷达图形的标志,如图:

Android Location服务之LocationManager案例详解

到此这篇关于android location服务之locationmanager案例详解的文章就介绍到这了,更多相关android location服务之locationmanager内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

相关标签: Android Location