本文实例讲述了android使用gps获取用户地理位置并监听位置变化的方法。分享给大家供大家参考,具体如下:
locationactivity.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
/* locationactivity.java
* @author octobershiner
* 2011 7 22
* se.hit
* 一个演示定位用户的位置并且监听位置变化的代码
* */
package uni.location;
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.os.vibrator;
import android.util.log;
import android.widget.textview;
public class locationactivity extends activity {
/** called when the activity is first created. */
//创建lcoationmanager对象
private locationmanager manager;
private static final string tag = "location demo";
@override
public void oncreate(bundle savedinstancestate) {
super.oncreate(savedinstancestate);
setcontentview(r.layout.main);
//获取系统的服务,
manager = (locationmanager)getsystemservice(context.location_service);
location location = manager.getlastknownlocation(locationmanager.gps_provider);
//第一次获得设备的位置
updatelocation(location);
//重要函数,监听数据测试
manager.requestlocationupdates(locationmanager.gps_provider, 6000, 10,
locationlistener);
}
/*此处更新一下,当activity不处于活动状态时取消gps的监听*/
public void onpause(){
super .onpause();
locationmanager.removelistener(locationlistener);
}
//创建一个事件监听器
private final locationlistener locationlistener = new locationlistener() {
public void onlocationchanged(location location) {
updatelocation(location);
}
public void onproviderdisabled(string provider){
updatelocation( null );
log.i(tag, "provider now is disabled.." );
}
public void onproviderenabled(string provider){
log.i(tag, "provider now is enabled.." );
}
public void onstatuschanged(string provider, int status,bundle extras){ }
};
//获取用户位置的函数,利用log显示
private void updatelocation(location location) {
string latlng;
if (location != null ) {
double lat = location.getlatitude();
double lng = location.getlongitude();
latlng = "latitude:" + lat + " longitude:" + lng;
} else {
latlng = "can't access your location" ;
}
log.i(tag, "the location has changed.." );
log.i(tag, "your location:" +latlng);
}
}
|
只修改activity文件是不够的,因为android系统的安全性,对服务采用授权的机制,所以需要修改manifest.xml文件
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?xml version= "1.0" encoding= "utf-8" ?>
<manifest xmlns:android= "http://schemas.android.com/apk/res/android"
package = "uni.location"
android:versioncode= "1"
android:versionname= "1.0" >
<uses-sdk android:minsdkversion= "8" />
<application android:icon= "@drawable/icon" android:label= "@string/app_name" >
<activity android:name= ".locationactivity"
android:label= "@string/app_name" >
<intent-filter>
<action android:name= "android.intent.action.main" />
<category android:name= "android.intent.category.launcher" />
</intent-filter>
</activity>
</application>
<uses-permission android:name= "android.permission.access_fine_location" />
</manifest>
|
很多朋友可能会有疑问,那就是gps定位在android虚拟机上的调试问题,其实是可以模拟的,大家启动虚拟机,然后打开ddms的界面,左侧device栏目会动态显示虚拟机上各项服务启动的情况,待出虚拟机现解锁界面后,单机device栏目下面的emulator行,这时会发现下面的emulator control下面会有 location control ,打开里面的manual标签,哈哈相信你已经看到了经纬度,你可以更改。运行你的程序,然后单击刚才经纬度设置的send按钮就可以模拟接受到新的地理位置了。
在这个demo中 我用到了log显示状态,推荐使用这种方法,很好用,想了解的朋友可以参考一下我的另一篇文章,学会巧妙的使用log,跟推荐大家搜一下sundyzlh的教学视频。
关于log的使用可参考上一篇《android编程之基于log演示一个activity生命周期实例详解》
最终效果如下图所示:
希望本文所述对大家android程序设计有所帮助。