LocationClient 与 LocationManager

LocationClient vs LocationManager(LocationClient 与 LocationManager)
本文介绍了LocationClient 与 LocationManager的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

LocationClientLocationManager有什么区别.

它们之间的优缺点是什么(比如电池、精度)?

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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Storing and reading files from Documents directory iOS 5(从 Documents 目录存储和读取文件 iOS 5)
How can i use MYSQL database connection in iphone application useing cocos2d?(如何在使用 cocos2d 的 iphone 应用程序中使用 MYSQL 数据库连接?)
Smoothly drag a Sprite in cocos2d - iPhone(在 cocos2d 中平滑拖动一个 Sprite - iPhone)
CCScrollView scroll and touch events never firing(CCScrollView 滚动和触摸事件永远不会触发)
removing jagged edges of my ropes using antialiasing of OpenGLES(使用 OpenGLES 的抗锯齿去除绳索的锯齿状边缘)
cocos2d Moving between scene(cocos2d 在场景之间移动)