LocationClient vs LocationManager(LocationClient 与 LocationManager)
问题描述
LocationClient和LocationManager有什么区别.
它们之间的优缺点是什么(比如电池、精度)?
What is the pros and cons between them (like battery, accuracy)?
哪个更好用?
推荐答案
Location Manager是Android SDK中引入的,可以作为android的特性使用.
Location Manager was introduced in Android SDK and can be used as a feature of android.
Location Client 是 Google Play SDK 的一部分,并在最近的 Google IO 2013 中引入.
Location Client is something that's part of Google Play SDK and is introduced in the recent Google IO 2013.
可以理解,由于 Location Client 是最新的,因此可以更有效地以最少的能量(电池消耗)和更高的准确度获取位置.
One can understand that since Location Client is the latest, it is more efficient in getting the location with minimal energy(battery drain) with greater accuracy.
更新: LocationClient 已弃用.您必须使用 GoogleApiClient.这里可以找到它的一个例子.
UPDATE: LocationClient is deprecated. You have to use GoogleApiClient. An example of it can be found here.
Google Play 服务团队已清理他们的代码并将 LocationClient 功能移至 GoogleApiClient.
Google Play Services Team has cleaned up their code and moved LocationClient functionality into GoogleApiClient.
相同的教程可在http://developer.android.com/training/location/retrieve-current.html
在以下链接中,您可以找到有关此主题的 IO 讨论http://www.youtube.com/watch?v=Bte_GHuxUGc
On following link you can find IO talk about this subject http://www.youtube.com/watch?v=Bte_GHuxUGc
再次更新
GoogleApiClient 再次被弃用,你必须使用 <一个 href="https://developers.google.com/android/reference/com/google/android/gms/common/api/GoogleApi" rel="nofollow noreferrer">GoogleApi 基于 API.
GoogleApiClient has been deprecated again, you have to use GoogleApi based APIs instead.
这篇关于LocationClient 与 LocationManager的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:LocationClient 与 LocationManager
基础教程推荐
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
