我正在开发Android应用,它正在使用Google+和GoogleMap api。
在更改google-play-services api之前,我使用的是PlusClient和LocationClient。没关系。
但是,从2014年2月开始创建GoogleApiClient,建议使用GoogleApiClient而不是GooglePlayServiceClient的子类。
因此,我尝试更改为使用GoogleApiClient。但是没有什么可以改变LocationClient。
即使我尝试仅更改PlusClient,我的代码也会变得混乱。因为GoogleApiClient和GooglePlayServiceClient必须有自己的接口(ConnectionCallbacks和OnConnectionFailedListener。)
如何将GoogleApiClient用于Google+和GoogleMap? 或者,我在哪里可以找到一些提示呢?