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


- MalformedJsonException:在第1行第1列路径中使用JsonReader.setLenient(True)接受格式错误的JSON 2022-01-01
- 使用自定义动画时在 iOS9 上忽略 edgesForExtendedLayout 2022-01-01
- 想使用ViewPager,无法识别android.support.*? 2022-01-01
- Android - 我如何找出用户有多少未读电子邮件? 2022-01-01
- 如何检查发送到 Android 应用程序的 Firebase 消息的传递状态? 2022-01-01
- Android viewpager检测滑动超出范围 2022-01-01
- 在测试浓缩咖啡时,Android设备不会在屏幕上启动活动 2022-01-01
- 用 Swift 实现 UITextFieldDelegate 2022-01-01
- android 4中的android RadioButton问题 2022-01-01
- Android - 拆分 Drawable 2022-01-01