- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章Android获取当前位置的经纬度数据由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
现在有这么一个需求:开启一个service服务,获取当前位置的经纬度数据,将获取的数据以广播的方式发送出去,注册广播的activity接收广播信息,并将接收到的数据在当前activity显示,如果当前位置发生变化,经纬度数据改变,获取改变后的经纬度数据,通过handler发送消息,更新ui界面,显示更新后的内容,请问这样子的demo该如何实现?
locationtool获取当前位置信息 。
android手机获取当前位置的方式:gps定位,wifi定位,基站定位,当前demo使用gps卫星定位,在locationtool中返回location、locationmanager两者对象,通过location提供的getlatitude()、getlongitude()读取经纬度数据,同时添加位置改变监听器mylocationlistener,具体代码如下:
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
package
cn.teachcourse.utils;
import
android.app.activity;
import
android.content.context;
import
android.content.intent;
import
android.location.criteria;
import
android.location.location;
import
android.location.locationlistener;
import
android.location.locationmanager;
import
android.os.bundle;
import
android.provider.settings;
import
android.widget.toast;
/*
@author postmaster@teachcourse.cn
@date 创建于:2016-1-22
*/
public
class
locationtool {
public
location getlocation() {
return
mlocation;
}
public
void
setlocation(location location) {
this
.mlocation = location;
}
private
context context;
private
location mlocation;
private
locationmanager mlocationmanager;
public
locationtool(context context) {
super
();
mlocationmanager = (locationmanager) context
.getsystemservice(context.location_service);
mlocation = mlocationmanager.getlastknownlocation(getprovider());
mlocationmanager.requestlocationupdates(locationmanager.gps_provider,
2000
,
10
,
new
mylocationlistener(
this
));
}
// 获取location provider
private
string getprovider() {
// 构建位置查询条件
criteria criteria =
new
criteria();
// 查询精度:高
criteria.setaccuracy(criteria.accuracy_fine);
// 是否查询海拨:否
criteria.setaltituderequired(
false
);
// 是否查询方位角 : 否
criteria.setbearingrequired(
false
);
// 是否允许付费:是
criteria.setcostallowed(
true
);
// 电量要求:低
criteria.setpowerrequirement(criteria.power_low);
// 返回最合适的符合条件的provider,第2个参数为true说明 , 如果只有一个provider是有效的,则返回当前provider
return
mlocationmanager.getbestprovider(criteria,
true
);
}
public
locationmanager getlocationmanager() {
return
mlocationmanager;
}
private
locationlistener mlocationlistener =
new
locationlistener() {
@override
public
void
onstatuschanged(string provider,
int
status, bundle extras) {
// todo auto-generated method stub
}
@override
public
void
onproviderenabled(string provider) {
location l = mlocationmanager.getlastknownlocation(provider);
if
(l !=
null
) {
mlocation = l;
}
}
@override
public
void
onproviderdisabled(string provider) {
mlocation =
null
;
}
@override
public
void
onlocationchanged(location location) {
if
(location !=
null
) {
mlocation = location;
}
}
};
public
void
closelocation() {
if
(mlocationmanager !=
null
) {
if
(mlocationmanager !=
null
) {
mlocationmanager.removeupdates(mlocationlistener);
mlocationlistener =
null
;
}
mlocationmanager =
null
;
}
}
}
|
mylocationlistener位置改变监听器 。
locationmanager对象调用requestlocationupdates(string provider, long mintime, float mindistance,locationlistener listener),在回调的方法中获取改变后的location对象,其中provider表示locationmanager.gps_provider,mintime表示最短时间间隔内更新位置信息(单位毫秒),mindistance表示最短距离内更新位置信息(单位米),mylocationlistener继承locationlistener,需要重写的方法如下:
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
68
69
70
71
|
package
cn.teachcourse.utils;
import
android.location.location;
import
android.location.locationlistener;
import
android.os.bundle;
/*
@author postmaster@teachcourse.cn
@date 创建于:2016-1-22
*/
public class mylocationlistener implements locationlistener {
private locationtool gpstool;
/**构造方法,传入locationtool
* @param gpstool
*/
public mylocationlistener(locationtool gpstool) {
super();
this.gpstool = gpstool;
}
/**
* 当前位置改变后,回调onlocationchanged方法,获取改变后的location对象
*
*/
@override
public void onlocationchanged(location location) {
if (location != null) {
gpstool.setlocation(location);
}
}
/**
* 当provider状态改变时回调的方法,当前的provider无法读取位置信息或者provider从无法读取位置信息变为能够读取为信息被回调的方法
*
*/
@override
public void onstatuschanged(string provider, int status, bundle extras) {
// todo auto-generated method stub
}
/**
* 当provider被用户允许开启,回调的onproviderenabled方法,比如:开启定位功能,回调该方法
*
*/
@override
public void onproviderenabled(string provider) {
location l = gpstool.getlocationmanager()
.getlastknownlocation(provider);
if (l != null) {
gpstool.setlocation(l);
}
}
/**
* 当provider不被用户允许开启,回调的onproviderdisabled方法,比如:无法开启定位功能,回调该方法
*
*/
@override
public
void
onproviderdisabled(string provider) {
gpstool.setlocation(
null
);
}
}
|
locationservice服务读取位置信息 。
为什么要开启service呢?service和activity、fragment一样也有自己的生命周期,oncreate——>onstartcommand(onstart)——>onunbind——>onrebind——>ondestroy,在locationservice执行的操作是启动一个线程获取更新后的位置信息,并以广播的方式发送出去,具体代码如下:
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
68
69
70
71
72
73
74
75
76
77
78
|
package
cn.teachcourse.utils;
import
android.app.activity;
import
android.app.service;
import
android.content.context;
import
android.content.intent;
import
android.location.location;
import
android.location.locationmanager;
import
android.os.ibinder;
import
android.provider.settings;
import
android.widget.toast;
/*
@author postmaster@teachcourse.cn
@date 创建于:2016-1-22
*/
public
class
locationservice
extends
service {
private
locationtool mgpstool =
null
;
private
boolean
threaddisable =
false
;
private
final
static
string tag = locationservice.
class
.getsimplename();
@override
public
void
oncreate() {
// todo auto-generated method stub
super
.oncreate();
mgpstool =
new
locationtool(
this
);
startthread();
}
private
void
startthread() {
new
thread(
new
runnable() {
@override
public
void
run() {
while
(!threaddisable) {
try
{
thread.sleep(
1000
);
}
catch
(interruptedexception e) {
e.printstacktrace();
}
if
(mgpstool !=
null
) {
// 当结束服务时gps为空
// 获取经纬度
location location = mgpstool.getlocation();
// 发送广播
intent intent =
new
intent();
intent.putextra(
"lat"
,
location ==
null
?
""
: location.getlatitude()
+
""
);
intent.putextra(
"lon"
,
location ==
null
?
""
: location.getlongitude()
+
""
);
intent.setaction(
"cn.teachcourse.utils.gpsservice"
);
sendbroadcast(intent);
}
}
}
}).start();
}
@override
public
void
ondestroy() {
super
.ondestroy();
threaddisable =
true
;
if
(mgpstool !=
null
) {
mgpstool.closelocation();
mgpstool =
null
;
}
}
@override
public
ibinder onbind(intent intent) {
return
null
;
}
}
|
mainactivity启动服务、注册广播、显示位置信息 。
在mainactivity需要做的事情有:第一启动locationservice服务,调用startservice()方法;第二注册广播接收器(broadcastreceiver),创建了一个内部类mybroadcastreceiver,继承broadcastreceiver,重写onreceive方法;第三获取经纬度数据,更新ui界面,显示当前位置信息,具体代码如下:
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
|
//启动服务
startservice(
new
intent(
this
, locationservice.
class
));
//注册广播
private
class
myreceiver
extends
broadcastreceiver {
@override
public
void
onreceive(context context, intent intent) {
bundle bundle = intent.getextras();
string lon = bundle.getstring(
"lon"
);
string lat = bundle.getstring(
"lat"
);
if
(!textutils.isempty(lon) && !textutils.isempty(lat)) {
mlatitude = lat;
mlongitude = lon;
isobtainloc =
true
;
new
thread(
new
runnable() {
@override
public
void
run() {
message msg =
new
message();
msg.what = refresh_ui;
// 发送消息,通知刷新界面
mhandler.sendmessage(msg);
}
}).start();
}
}
}
//更新ui界面
private
handler mhandler =
new
handler() {
@override
public
void
handlemessage(message msg) {
// todo auto-generated method stub
super
.handlemessage(msg);
switch
(msg.what) {
case
refresh_ui:
refreshui();
break
;
default
:
break
;
}
}
};
private
void
refreshui() {
if
(isobtainloc) {
mtextview.settext(
"目前经纬度\n经度:"
+ mlongitude +
"\n纬度:"
+ mlatitude);
mdialog.dismiss();
}
}
|
以上就是本文的全部内容,希望对大家学习android软件编程有所帮助.
最后此篇关于Android获取当前位置的经纬度数据的文章就讲到这里了,如果你想了解更多关于Android获取当前位置的经纬度数据的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
初学者 android 问题。好的,我已经成功写入文件。例如。 //获取文件名 String filename = getResources().getString(R.string.filename
我已经将相同的图像保存到/data/data/mypackage/img/中,现在我想显示这个全屏,我曾尝试使用 ACTION_VIEW 来显示 android 标准程序,但它不是从/data/dat
我正在使用Xcode 9,Swift 4。 我正在尝试使用以下代码从URL在ImageView中显示图像: func getImageFromUrl(sourceUrl: String) -> UII
我的 Ubuntu 安装 genymotion 有问题。主要是我无法调试我的数据库,因为通过 eclipse 中的 DBMS 和 shell 中的 adb 我无法查看/data/文件夹的内容。没有显示
我正在尝试用 PHP 发布一些 JSON 数据。但是出了点问题。 这是我的 html -- {% for x in sets %}
我观察到两种方法的结果不同。为什么是这样?我知道 lm 上发生了什么,但无法弄清楚 tslm 上发生了什么。 > library(forecast) > set.seed(2) > tts lm(t
我不确定为什么会这样!我有一个由 spring data elasticsearch 和 spring data jpa 使用的类,但是当我尝试运行我的应用程序时出现错误。 Error creatin
在 this vega 图表,如果我下载并转换 flare-dependencies.json使用以下 jq 到 csv命令, jq -r '(map(keys) | add | unique) as
我正在提交一个项目,我必须在其中创建一个带有表的 mysql 数据库。一切都在我这边进行,所以我只想检查如何将我所有的压缩文件发送给使用不同计算机的人。基本上,我如何为另一台计算机创建我的数据库文件,
我有一个应用程序可以将文本文件写入内部存储。我想仔细看看我的电脑。 我运行了 Toast.makeText 来显示路径,它说:/数据/数据/我的包 但是当我转到 Android Studio 的 An
我喜欢使用 Genymotion 模拟器以如此出色的速度加载 Android。它有非常好的速度,但仍然有一些不稳定的性能。 如何从 Eclipse 中的文件资源管理器访问 Genymotion 模拟器
我需要更改 Silverlight 中文本框的格式。数据通过 MVVM 绑定(bind)。 例如,有一个 int 属性,我将 1 添加到 setter 中的值并调用 OnPropertyChanged
我想向 Youtube Data API 提出请求,但我不需要访问任何用户信息。我只想浏览公共(public)视频并根据搜索词显示视频。 我可以在未经授权的情况下这样做吗? 最佳答案 YouTube
我已经设置了一个 Twilio 应用程序,我想向人们发送更新,但我不想回复单个文本。我只是想让他们在有问题时打电话。我一切正常,但我想在发送文本时显示传入文本,以确保我不会错过任何问题。我正在使用 p
我有一个带有表单的网站(目前它是纯 HTML,但我们正在切换到 JQuery)。流程是这样的: 接受用户的输入 --- 5 个整数 通过 REST 调用网络服务 在服务器端运行一些计算...并生成一个
假设我们有一个名为 configuration.js 的文件,当我们查看内部时,我们会看到: 'use strict'; var profile = { "project": "%Projec
这部分是对 Previous Question 的扩展我的: 我现在可以从我的 CI Controller 成功返回 JSON 数据,它返回: {"results":[{"id":"1","Sourc
有什么有效的方法可以删除 ios 中 CBL 的所有文档存储?我对此有疑问,或者,如果有人知道如何从本质上使该应用程序像刚刚安装一样,那也会非常有帮助。我们正在努力确保我们的注销实际上将应用程序设置为
我有一个 Rails 应用程序,它与其他 Rails 应用程序通信以进行数据插入。我使用 jQuery $.post 方法进行数据插入。对于插入,我的其他 Rails 应用程序显示 200 OK。但在
我正在为服务于发布请求的 API 调用运行单元测试。我正在传递请求正文,并且必须将响应作为帐户数据返回。但我只收到断言错误 注意:数据是从 Azure 中获取的 spec.js const accou
我是一名优秀的程序员,十分优秀!