GooglePlayServicesUtil是Android的UserRecoverableError

时间:2015-02-12 18:32:34

标签: android service

        int resultCode = GooglePlayServicesUtil
                .isGooglePlayServicesAvailable(rootView.getContext());
        if (resultCode != ConnectionResult.SUCCESS) {
            if (GooglePlayServicesUtil.isUserRecoverableError(resultCode)) {
                GooglePlayServicesUtil.getErrorDialog(resultCode, getActivity(),
                        PLAY_SERVICES_RESOLUTION_REQUEST).show();
            } else {
                Toast toast = Toast
                        .makeText(
                                rootView.getContext(),
                                R.string.googleServices,
                                Toast.LENGTH_LONG);
                toast.show();
            }

以下是问题,弹出窗口显示GooglePlayServicesUtil isUserRecoverableError,但是当我点击go google play services.it什么都不做,并且没有下载任何内容或更新。

0 个答案:

没有答案