获取 Android 中的位置
Getting Location in Android
我正在 Android 示例表盘上编码。我想连接到 Google Play Services 以获取我的当前位置,并将其放入我的 OnCreate 方法中:
mGoogleApiClient = new GoogleApiClient.Builder(this)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.addApi(LocationServices.API)
.build();
像这样:
我的错误如下:
第一个这个不能应用到引擎上。 mGoogleApiClient,LocationServices 无法解析为符号。我已经尝试 implementing/extending 我的引擎 class,但这是不允许的。问题可能是 class 我放入这段代码是因为它的组织方式可能不同?我怎样才能使这项工作?谢谢
你有最新的 google api 更新吗?您使用 Android studio 还是 Eclipse 进行开发?您确定您的导入正确并且 Google Play 服务与您的项目位于同一个工作区吗?我有一个类似的问题,在 eclipse 中使用 ADT 更新修复它。
我正在 Android 示例表盘上编码。我想连接到 Google Play Services 以获取我的当前位置,并将其放入我的 OnCreate 方法中:
mGoogleApiClient = new GoogleApiClient.Builder(this)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.addApi(LocationServices.API)
.build();
像这样:
我的错误如下:
第一个这个不能应用到引擎上。 mGoogleApiClient,LocationServices 无法解析为符号。我已经尝试 implementing/extending 我的引擎 class,但这是不允许的。问题可能是 class 我放入这段代码是因为它的组织方式可能不同?我怎样才能使这项工作?谢谢
你有最新的 google api 更新吗?您使用 Android studio 还是 Eclipse 进行开发?您确定您的导入正确并且 Google Play 服务与您的项目位于同一个工作区吗?我有一个类似的问题,在 eclipse 中使用 ADT 更新修复它。