这是我构建googleApiClient的代码:
if (mGoogleApiClient == null) {
mGoogleApiClient = new GoogleApiClient.Builder(this)
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.addApi(LocationServices.API)
.build();
}
然而第二个'这个'有下划线,因为它正在寻找一个" connectionCallback"而不是一项活动。
我尝试在启动课程时实现这些:
GoogleApiClient.ConnectionCallbacks, GoogleApiClient.OnConnectionFailedListener
然而,我收到此错误:
Class MapsActivity must be either declared abstract or implement abstract method 'OnConnectionSuspended(int)' in 'ConnectionCallbacks'
有人可以帮我解决这个问题吗?
编辑:这不是另一个问题的重复,因为它是一个不同的场景,答案似乎不适用于这种情况。即便如此,我也无法解决这个问题。