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
基础教程推荐
- - (CGRect)convertRect:(CGRect)rect toView:(UIView *)view 如何工作 2022-01-01
- 在 Android 模拟器中激活网络位置提供程序? 2022-01-01
- 我的 UIImageView 的任务 2022-01-01
- 新的@SystemApi 注解是什么意思,和@hide 有什么区别 2022-01-01
- 在 appComponent dagger 2 中动态添加测试模块? 2022-01-01
- 在 iOS8 中无法获得正确的键盘高度值 2022-01-01
- 可可/目标C(OSX不是iOS)从子对象访问父对象 2022-01-01
- 如何将多个组件添加到 PickerView? 2022-01-01
- 突出显示朗读文本(在 iPhone 的故事书类型应用程序中) 2022-01-01
- Android:STATE_SELECTED不工作 2022-01-01
