它讓我瘋狂在谷歌文檔中經常忽略的重要文檔。如果我不是禿頭的話,我會拔掉我的頭髮。檢查谷歌播放服務
private void checkGooglePlayServices() {
int errorCode = GoogleApiAvailability.getInstance().isGooglePlayServicesAvailable(this);
boolean isErrorResolvable = GoogleApiAvailability.getInstance().isUserResolvableError(errorCode);
if (isErrorResolvable) {
GoogleApiAvailability.getInstance().getErrorDialog(this, errorCode, REQUEST_CODE_GOOGLE_PLAY_SERVICES).show();
} else {
if (errorCode == ConnectionResult.SUCCESS) {
launchApplication();
}
}
}
上面的代碼顯示一個對話框,說有一個按鈕閱讀獲取谷歌播放服務:
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == REQUEST_CODE_GOOGLE_PLAY_SERVICES) {
}
}
現在我該怎麼辦嗎?我應該如何引導用戶到Play商店獲取遊戲服務的更新?我認爲 getErrorResolutionPendingIntent
在這裏有用,但我不知道如何去做這件事。
請幫助我。
謝謝。這讓我很困擾。 –