Android编程获取GPS数据的方法详解
本文实例讲述了android编程获取gps数据的方法。分享给大家供大家参考,具体如下:
gps是android系统中重要的组成部分,通过它可以衍生出众多的与位置相关的应用。
android的gps有一个专门的管理类,称为locationmanager,所有的gps定位服务都由其对象产生并进行控制。
首先需要明确的是,locationmanager类的对象获取并不是直接创建的,而是由系统提供的,具体来说,通过如下方法,为一个locationmanager对象建立一个对象引用:
至此,我们可以用locationmanager这个对象对任意有关gps的功能进行操作了。下表列出了几个常用的成员方法:
方法及其签名 |
描述 |
list<string> getallproviders() |
获取所有与设备关联的定位模块的列表 |
string getbestprovider(criteria, boolean) |
获取设定的标准(criteria对象)中最适合的一个设备 |
gpsstatus getgpsstatus(gpsstatus) |
获取gps当前状态 |
location getlastknownlocation(string) |
获取最近一次的可用地点信息 |
boolean isproviderenabled(string) |
判断参数所提及的设备是否可用 |
gps还有一个支持api,即location,它的作用是一个代表位置信息的抽象类,用它可以获取所有的位置数据:
方法及其签名 |
描述 |
double getaltitude() |
获取当前高度 |
float getbearing() |
获取当前方向 |
double getlatitude() |
获取当前纬度 |
double getlongitude() |
获取当前经度 |
float getspeed() |
获取当前速度 |
我们可以用以上的方法开始进行定位。
可以将地点信息传递给一个location对象:
我们还可以调用以下函数,对每次更新的位置信息进行我们想要的操作:
其中,第一个参数是locationprovider对象,第二个参数是刷新的时间差,这里设定为1秒,第三个参数是位置差,这里设定为10米,第四个参数为一个位置监听器对象,它必须实现4个方法:
①. public void onlocationchanged(location location)
②. public void onproviderdisabled(string provider)
③. public void onproviderenabled(string provider)
④. public void onstatuschanged(string provider, int status, bundleextras)
可以重写这些方法来实现我们的需求。
当我们使用模拟器进行测试的时候,由于模拟器无法获取地理位置,所以必须用emulator的位置控制器进行设置:
最终的结果如图所示:
代码如下所示:
package org.timm.android; 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.widget.edittext; public class locationtryactivity extends activity { edittext text; /** called when the activity is first created. */ @override public void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.main); final locationmanager locationmanager = (locationmanager)getsystemservice(context.location_service); text = (edittext)findviewbyid(r.id.textshow); location location = locationmanager.getlastknownlocation(locationmanager.gps_provider); showlocation(location); locationmanager.requestlocationupdates(locationmanager.gps_provider, 1000, 10, new locationlistener(){ public void onlocationchanged(location location) { // todo auto-generated method stub showlocation(location); } public void onproviderdisabled(string provider) { // todo auto-generated method stub showlocation(null); } public void onproviderenabled(string provider) { // todo auto-generated method stub showlocation(locationmanager.getlastknownlocation(provider)); } public void onstatuschanged(string provider, int status, bundle extras) { // todo auto-generated method stub } }); } public void showlocation(location currentlocation){ if(currentlocation != null){ string s = ""; s += " current location: ("; s += currentlocation.getlongitude(); s += ","; s += currentlocation.getlatitude(); s += ")\n speed: "; s += currentlocation.getspeed(); s += "\n direction: "; s += currentlocation.getbearing(); text.settext(s); } else{ text.settext(""); } } }
最后一点需要说明的是,需要在androidmanifest.xml中设置许可:
ps:关于androidmanifest.xml详细内容可参考本站在线工具:
android manifest功能与权限描述大全:
http://tools.jb51.net/table/androidmanifest
更多关于android相关内容感兴趣的读者可查看本站专题:《android控件用法总结》、《android视图view技巧总结》、《android操作sqlite数据库技巧总结》、《android操作json格式数据技巧总结》、《android数据库操作技巧总结》、《android文件操作技巧汇总》、《android编程开发之sd卡操作方法汇总》、《android开发入门与进阶教程》及《android资源操作技巧汇总》
希望本文所述对大家android程序设计有所帮助。