我正在使用Android Studio编写应用程序,并且希望该应用程序检查设备的用户是否已启用Google Play服务,但是我不知道如何执行此操作,有人可以帮忙吗?
答案 0 :(得分:0)
您应该使用以下代码:
private boolean checkPlayServices () {
GoogleApiAvailability gApi = GoogleApiAvailability.getInstance();
int resultCode = gApi.isGooglePlayServicesAvailable(this);
if (resultCode != ConnectionResult.SUCCESS) {
if (gApi.isUserResolvableError(resultCode)) {
gApi.getErrorDialog(this, resultCode, PLAY_SERVICES_RESOLUTION_REQUEST).show();
} else {
Toast.makeText(this, getResources().getString(R.string.toast_playservices_unrecoverable), Toast.LENGTH_LONG).show();
finish();
}
return false;
}
return true;
}