當前位置: 首頁>>代碼示例>>Java>>正文


Java GoogleApiAvailability.isUserResolvableError方法代碼示例

本文整理匯總了Java中com.google.android.gms.common.GoogleApiAvailability.isUserResolvableError方法的典型用法代碼示例。如果您正苦於以下問題:Java GoogleApiAvailability.isUserResolvableError方法的具體用法?Java GoogleApiAvailability.isUserResolvableError怎麽用?Java GoogleApiAvailability.isUserResolvableError使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在com.google.android.gms.common.GoogleApiAvailability的用法示例。


在下文中一共展示了GoogleApiAvailability.isUserResolvableError方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: checkPlayServicesAvailable

import com.google.android.gms.common.GoogleApiAvailability; //導入方法依賴的package包/類
/**
 * Check the device to make sure it has the Google Play Services APK. If
 * it doesn't, display a dialog that allows users to download the APK from
 * the Google Play Store or enable it in the device's system settings.
 *
 * @param activity activity where you check Google Play Services availability
 */
public boolean checkPlayServicesAvailable(Activity activity) {
    GoogleApiAvailability apiAvailability = GoogleApiAvailability.getInstance();
    int resultCode = apiAvailability.isGooglePlayServicesAvailable(activity);
    if (resultCode != ConnectionResult.SUCCESS) {
        if (apiAvailability.isUserResolvableError(resultCode)) {
            apiAvailability.getErrorDialog(activity, resultCode, PLAY_SERVICES_REQUEST_CODE)
                    .show();
        } else {
            Log.i(TAG, "This device is not supported.");
            activity.finish();
        }
        return false;
    }
    return true;
}
 
開發者ID:mobilemaster128,項目名稱:quickblox-android,代碼行數:23,代碼來源:GooglePlayServicesHelper.java

示例2: checkPlayServices

import com.google.android.gms.common.GoogleApiAvailability; //導入方法依賴的package包/類
private boolean checkPlayServices() {
    GoogleApiAvailability apiAvailability = GoogleApiAvailability.getInstance();
    int resultCode = apiAvailability.isGooglePlayServicesAvailable(this);
    if (resultCode != ConnectionResult.SUCCESS) {
        if (apiAvailability.isUserResolvableError(resultCode)) {
            apiAvailability.getErrorDialog(this, resultCode, 9000, new DialogInterface.OnCancelListener() {
                @Override
                public void onCancel(DialogInterface dialog) {
                    finish();
                }
            }).show();
        } else {
            Log.i(TAG, "This device is not supported.");
            finish();
        }
        return false;
    }
    return true;
}
 
開發者ID:squareboat,項目名稱:Excuser,代碼行數:20,代碼來源:MainWearActivity.java

示例3: checkPlayServices

import com.google.android.gms.common.GoogleApiAvailability; //導入方法依賴的package包/類
public static boolean checkPlayServices(Activity context) {
    GoogleApiAvailability apiAvailability = GoogleApiAvailability.getInstance();
    int resultCode = apiAvailability.isGooglePlayServicesAvailable(context);
    if (resultCode != ConnectionResult.SUCCESS) {
        if (apiAvailability.isUserResolvableError(resultCode)) {
            apiAvailability.getErrorDialog(context, resultCode, 9000).show();
        } else {
            AlertDialog.Builder alert = new AlertDialog.Builder(context);
            alert.setTitle(context.getResources().getString(R.string.app_name));
            alert.setCancelable(false);
            alert.setMessage(R.string.play_services_warning);
            alert.setPositiveButton("Exit", (dialog, which) -> System.exit(0));
        }
        return false;
    }
    return true;
}
 
開發者ID:afiqiqmal,項目名稱:MVP-Android,代碼行數:18,代碼來源:CommonUtils.java

示例4: checkPlayServices

import com.google.android.gms.common.GoogleApiAvailability; //導入方法依賴的package包/類
public static boolean checkPlayServices(Activity context) {
    GoogleApiAvailability apiAvailability = GoogleApiAvailability.getInstance();
    int resultCode = apiAvailability.isGooglePlayServicesAvailable(context);
    if (resultCode != ConnectionResult.SUCCESS) {
        if (apiAvailability.isUserResolvableError(resultCode)) {
            apiAvailability.getErrorDialog(context, resultCode, 9000).show();
        } else {
            AlertDialog.Builder alert = new AlertDialog.Builder(context);
            alert.setTitle("");
            alert.setMessage("");
            alert.setPositiveButton("EXIT", (dialog, which) -> System.exit(0));
        }
        return false;
    }
    return true;
}
 
開發者ID:afiqiqmal,項目名稱:MVP-Android,代碼行數:17,代碼來源:SubUtils.java

示例5: isGooglePlayServicesAvailable

import com.google.android.gms.common.GoogleApiAvailability; //導入方法依賴的package包/類
public boolean isGooglePlayServicesAvailable() {
    GoogleApiAvailability googleApiAvailability = GoogleApiAvailability.getInstance();
    int code = googleApiAvailability.isGooglePlayServicesAvailable(context);
    if (code != ConnectionResult.SUCCESS) {
        if (googleApiAvailability.isUserResolvableError(code)) {
            googleApiAvailability.getErrorDialog(context, code, PLAY_SERVICE_RESOLUTION_REQUEST, this);
        } else {
            showLog("THIS DEVICE IS NOT SUPPORTED");
            Util.killAppProccess();
        }
        showLog("isGooglePlayServicesAvailable - " + "false");
        return false;
    }
    showLog("isGooglePlayServicesAvailable - " + "true");
    return true;
}
 
開發者ID:pedromassango,項目名稱:Programmers,代碼行數:17,代碼來源:GoogleServices.java

示例6: checkPlayServicesPrereq

import com.google.android.gms.common.GoogleApiAvailability; //導入方法依賴的package包/類
private boolean checkPlayServicesPrereq() {
    GoogleApiAvailability googleAPI = GoogleApiAvailability.getInstance();
    int result = googleAPI.isGooglePlayServicesAvailable(this);
    if (result != ConnectionResult.SUCCESS) {
        if (googleAPI.isUserResolvableError(result)) {
            googleAPI.getErrorDialog(this, result, 0).show();

            Crashlytics.log(Log.INFO, MainActivity.class.getSimpleName(), "PlayServices update required");
            Answers.getInstance().logCustom(new CustomEvent("PlayServices update required"));
        } else {
            playServicesErrorToast.show();

            Crashlytics.log(Log.ERROR, MainActivity.class.getSimpleName(), "PlayServices incompatible");
            Answers.getInstance().logCustom(new CustomEvent("PlayServices incompatible"));
        }
        return false;
    }

    Crashlytics.log(Log.INFO, MainActivity.class.getSimpleName(), "PlayServices compatible");
    return true;
}
 
開發者ID:jakehilborn,項目名稱:speedr,代碼行數:22,代碼來源:MainActivity.java

示例7: checkPlayServices

import com.google.android.gms.common.GoogleApiAvailability; //導入方法依賴的package包/類
/**
 * Check the device to make sure it has the Google Play Services APK. If
 * it doesn't, display a dialog that allows users to download the APK from
 * the Google Play Store or enable it in the device's system settings.
 */
private boolean checkPlayServices() {
    GoogleApiAvailability apiAvailability = GoogleApiAvailability.getInstance();
    int resultCode = apiAvailability.isGooglePlayServicesAvailable(cordova.getActivity());
    if (resultCode != ConnectionResult.SUCCESS) {
        if (apiAvailability.isUserResolvableError(resultCode)) {
            apiAvailability.getErrorDialog(cordova.getActivity(), resultCode, PLAY_SERVICES_RESOLUTION_REQUEST)
                    .show();
        } else {
            Log.e(TAG, "This device is not supported for Google Play Services.");
            javascriptErrorback(0, "This device is not supported for Google Play Services.", mInitCallbackContext);

        }
        return false;
    }
    return true;
}
 
開發者ID:jefflinwood,項目名稱:twilio-voice-phonegap-plugin,代碼行數:22,代碼來源:TwilioVoicePlugin.java

示例8: acquireGooglePlayServices

import com.google.android.gms.common.GoogleApiAvailability; //導入方法依賴的package包/類
/**
 * Attempt to resolve a missing, out-of-date, invalid or disabled Google
 * Play Services installation via a user dialog, if possible.
 */
public static void acquireGooglePlayServices(Context context) {
    GoogleApiAvailability apiAvailability =
            GoogleApiAvailability.getInstance();
    final int connectionStatusCode =
            apiAvailability.isGooglePlayServicesAvailable(context);
    if (apiAvailability.isUserResolvableError(connectionStatusCode)) {
       Log.e("Error","Connection Status Code"+connectionStatusCode);
    }
}
 
開發者ID:PrivacyStreams,項目名稱:PrivacyStreams,代碼行數:14,代碼來源:DeviceUtils.java

示例9: checkPlayServices

import com.google.android.gms.common.GoogleApiAvailability; //導入方法依賴的package包/類
/**
 * Check the device to make sure it has the Google Play Services APK. If
 * it doesn't, display a dialog that allows users to download the APK from
 * the Google Play Store or enable it in the device's system settings.
 */
public boolean checkPlayServices() {
    GoogleApiAvailability apiAvailability = GoogleApiAvailability.getInstance();
    int resultCode = apiAvailability.isGooglePlayServicesAvailable(mContext);
    if (resultCode != ConnectionResult.SUCCESS) {
        if (apiAvailability.isUserResolvableError(resultCode)) {
            apiAvailability.getErrorDialog((Activity) mContext, resultCode, 9000)
                    .show();
        } else {
            showToast(mContext.getResources().getString(R.string.warning_play_services));
        }
        return false;
    }
    return true;
}
 
開發者ID:SoftprodigyIndia,項目名稱:AndroidAppBoilerplate,代碼行數:20,代碼來源:AppUtils.java

示例10: googleServicesAvailable

import com.google.android.gms.common.GoogleApiAvailability; //導入方法依賴的package包/類
public boolean googleServicesAvailable() {
    GoogleApiAvailability api = GoogleApiAvailability.getInstance();
    int isAvailable = api.isGooglePlayServicesAvailable(this);
    if (isAvailable == ConnectionResult.SUCCESS) {
        return true;
    } else if (api.isUserResolvableError(isAvailable)) {
        Dialog dialog = api.getErrorDialog(this, isAvailable, 0);
        dialog.show();
    } else {
        Toast.makeText(this, "Cannot connect to Google Play Services", Toast.LENGTH_SHORT).show();
    }
    return false;
}
 
開發者ID:rahul051296,項目名稱:quake-alert-android-app,代碼行數:14,代碼來源:QuakeActivity.java

示例11: checkForPlayServices

import com.google.android.gms.common.GoogleApiAvailability; //導入方法依賴的package包/類
private boolean checkForPlayServices() {
    GoogleApiAvailability googleApiAvailability = GoogleApiAvailability.getInstance();
    int resultCode = googleApiAvailability
            .isGooglePlayServicesAvailable(getReactApplicationContext());
    if (resultCode != ConnectionResult.SUCCESS) {
        if (googleApiAvailability.isUserResolvableError(resultCode)) {
            googleApiAvailability.getErrorDialog(getCurrentActivity(), resultCode,
                    PLAY_SERVICES_RESOLUTION_REQUEST).show();
        }
        return false;
    }
    return true;
}
 
開發者ID:MustansirZia,項目名稱:react-native-fused-location,代碼行數:14,代碼來源:FusedLocationModule.java

示例12: acquireGooglePlayServices

import com.google.android.gms.common.GoogleApiAvailability; //導入方法依賴的package包/類
/**
 * Attempt to resolve a missing, out-of-date, invalid or disabled Google
 * Play Services installation via a user dialog, if possible.
 */
private void acquireGooglePlayServices() {
    GoogleApiAvailability apiAvailability =
            GoogleApiAvailability.getInstance();
    final int connectionStatusCode =
            apiAvailability.isGooglePlayServicesAvailable(context);
    if (apiAvailability.isUserResolvableError(connectionStatusCode)) {
        showGooglePlayServicesAvailabilityErrorDialog(connectionStatusCode);
    }
}
 
開發者ID:Pl4gue,項目名稱:homeworkManager-android,代碼行數:14,代碼來源:AddHomeworkPresenter.java

示例13: checkGooglePlayService

import com.google.android.gms.common.GoogleApiAvailability; //導入方法依賴的package包/類
private void checkGooglePlayService() {
    GoogleApiAvailability googleAPI = GoogleApiAvailability.getInstance();
    int result = googleAPI.isGooglePlayServicesAvailable(this);
    if(result != ConnectionResult.SUCCESS) {
        if (googleAPI.isUserResolvableError(result)) {
            googleAPI.getErrorDialog(this, result,
                    0).show();
        }
    }
}
 
開發者ID:LewisVo,項目名稱:Overkill,代碼行數:11,代碼來源:MainActivity.java

示例14: acquireGooglePlayServices

import com.google.android.gms.common.GoogleApiAvailability; //導入方法依賴的package包/類
/**
 * Attempt to resolve a missing, out-of-date, invalid or disabled Google
 * Play Services installation via a user dialog, if possible.
 */
private void acquireGooglePlayServices() {
    GoogleApiAvailability apiAvailability =
            GoogleApiAvailability.getInstance();
    final int connectionStatusCode =
            apiAvailability.isGooglePlayServicesAvailable(getActivity());
    if (apiAvailability.isUserResolvableError(connectionStatusCode)) {
        SharedPreferences settings = getPreferenceManager().getSharedPreferences();
        SharedPreferences.Editor editor = settings.edit();
        editor.putBoolean(getString(R.string.pref_key_secure_backup_enabled), false);
        editor.apply();
        showGooglePlayServicesAvailabilityErrorDialog(connectionStatusCode);
    }
}
 
開發者ID:mkeresztes,項目名稱:AndiCar,代碼行數:18,代碼來源:PreferenceActivity.java

示例15: checkGooglePlayAvailability

import com.google.android.gms.common.GoogleApiAvailability; //導入方法依賴的package包/類
private boolean checkGooglePlayAvailability() {
    GoogleApiAvailability googleApiAvailability = GoogleApiAvailability.getInstance();
    int resultCode = googleApiAvailability.isGooglePlayServicesAvailable(context);
    if(resultCode == ConnectionResult.SUCCESS) {
        return true;
    } else {
        if(googleApiAvailability.isUserResolvableError(resultCode)) {
            googleApiAvailability.getErrorDialog(MainActivity.this, resultCode, 2404).show();
        }
    }
    return false;
}
 
開發者ID:EzequielAdrianM,項目名稱:Camera2Vision,代碼行數:13,代碼來源:MainActivity.java


注:本文中的com.google.android.gms.common.GoogleApiAvailability.isUserResolvableError方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。