一、代码 1.xml(1)activity_main.xml 1 <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> 2 <uses-permission android:name="android.pe
分类:
移动开发 时间:
2016-02-20 17:20:56
阅读次数:
258
android提供了LocationManager来取得位置,用LocationListener来监听位置的变化 先做一些初始化工作: /** latitude and longitude of current location*/ public static String mLat = ""; p
分类:
移动开发 时间:
2016-02-03 12:39:54
阅读次数:
239
简单封装了一下,获取简单,看代码:
import android.content.Context;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
/**...
分类:
移动开发 时间:
2015-08-06 13:21:21
阅读次数:
168
在Android开发当中,经常需要用到定位功能,尤其是依赖于地理位置功能的应用,很多人喜欢使用百度地图,高德地图提供的sdk,开放API,但是在仅仅需要经纬度,或者城市,街道地址等信息,并不需要提供预览地图,地图界面的应用中,这时,不需要使用百度地图,高德地图,这样做只会增加apk的体积,怎么办呢?
其实LocationManager,Geocoder这些Android API给我们提供的这...
分类:
移动开发 时间:
2015-07-20 16:32:17
阅读次数:
170
1.User Location获取用户的位置追踪用户的移动2.User Location的API 1.LocationManager :用于管理android的用户定位服务 2.LocationProvider :提供多种定位方式给开发者选择 3.LocationListener : 监听位置是否改...
分类:
移动开发 时间:
2015-02-22 18:26:46
阅读次数:
228
本代码实现GPS定位,并定时在界面上呈现定位的精度以及在用卫星数量。布局代码如下: 首先写后台的LBSServiceListener 实现LocationListener接口,在这个LBSServiceListener 中可以重写方法,代...
分类:
其他好文 时间:
2015-01-15 10:34:16
阅读次数:
177
MainActivity如下:
package cc.bb;
import java.util.Iterator;
import java.util.List;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
...
分类:
其他好文 时间:
2014-12-06 14:09:13
阅读次数:
204
前面已经把活动和服务讲了讲,要注意的是服务的用法,我们在这里是 extends IntentService implements LocationListener ,下面看下 IntentService
IntentService是一个通过Context.startService(Intent)启动可以处理异步请求的Service,使用时你只需要继承IntentService和重写其中的...
分类:
移动开发 时间:
2014-10-27 10:58:50
阅读次数:
303
上一篇博客我们把权限和欢迎动画讲了一下,接下来给大家讲服务和主活动的使用,在上一篇中我们介绍到了服务和活动,在
启动服务之后,服务会将网络请求到的天气信息以广播的形式发送至活动,而活动只需要接收广播就OK了,之后将得到的数据
赋给对应的容器组件就OK了
下面我们先来看看服务的代码 (extends IntentService implements LocationListener):
pa...
分类:
移动开发 时间:
2014-10-27 09:23:41
阅读次数:
235
因项目中要用到GPS定位,学习了下,便把学习成果记录下来。
在清单文件中添加权限:
用到的几个对象,LocationManager、LocationListener、Location.
*LocationManager 位置管理器,想要操作定位相关设备,必须先创建一个一个LocationManager对象。
...
分类:
移动开发 时间:
2014-09-11 11:13:31
阅读次数:
236