here è il codice fornito dalla guida ufficiale, mentre questo è uno snippet che causa problemi.Android: come risolvere la mancata connessione API di Google da un servizio?
@Override
public void onConnectionFailed(ConnectionResult result) {
if (mResolvingError) {
// Already attempting to resolve an error.
return;
} else if (result.hasResolution()) {
try {
mResolvingError = true;
result.startResolutionForResult(this, REQUEST_RESOLVE_ERROR);
} catch (IntentSender.SendIntentException e) {
// There was an error with the resolution intent. Try again.
mGoogleApiClient.connect();
}
} else {
// Show dialog using GooglePlayServicesUtil.getErrorDialog()
mResolvingError = true;
GooglePlayServicesUtil.getErrorDialog(result.getErrorCode(), this, REQUEST_RESOLVE_ERROR)
.setOnDismissListener(new DialogInterface.OnDismissListener() {
@Override
public void onDismiss(DialogInterface dialog) {
mResolvingError = false;
}
});
}
}
Se lo uso in un servizio, quando si legge la variabile this
passato come argomento a queste funzioni, si aspettano un tipo di attività. Come devo fare? È un servizio.
Per lo stesso motivo non riesco a ottenere il risultato dell'attività
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == REQUEST_RESOLVE_ERROR) {
mResolvingError = false;
if (resultCode == RESULT_OK) {
// Make sure the app is not already connected or attempting to connect
if (!mGoogleApiClient.isConnecting() &&
!mGoogleApiClient.isConnected()) {
mGoogleApiClient.connect();
}
}
}
}
quindi il tuo problema è ottenere un riferimento a un'attività? nella vita del servizio le attività sono anche vive? – Elltz
Che tipo di servizio: avviato, vincolato, intento? –
avviato mentre l'attività potrebbe essere in qualsiasi stato – user3290180