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


Java GoogleApiAvailability.getErrorDialog方法代碼示例

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


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

示例1: onResume

import com.google.android.gms.common.GoogleApiAvailability; //導入方法依賴的package包/類
@Override
protected void onResume() {
    super.onResume();

    GoogleApiAvailability apiAvailability = GoogleApiAvailability.getInstance();
    int errorCode = apiAvailability.isGooglePlayServicesAvailable(this);

    if (errorCode != ConnectionResult.SUCCESS) {
        Dialog errorDialog = apiAvailability.getErrorDialog(this,
                errorCode,
                REQUEST_ERROR,
                new DialogInterface.OnCancelListener() {
                    @Override
                    public void onCancel(DialogInterface dialogInterface) {
                        // Leave if services are unavailable.
                        finish();
                    }
                });

        errorDialog.show();
    }
}
 
開發者ID:rsippl,項目名稱:AndroidProgramming3e,代碼行數:23,代碼來源:LocatrActivity.java

示例2: 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

示例3: onResume

import com.google.android.gms.common.GoogleApiAvailability; //導入方法依賴的package包/類
@Override
public void onResume() {
    super.onResume();

    GoogleApiAvailability apiAvailablity = GoogleApiAvailability.getInstance();
    int errorCode = apiAvailablity.isGooglePlayServicesAvailable(getContext());

    if (errorCode != ConnectionResult.SUCCESS) {
        Dialog errorDialog = apiAvailablity.getErrorDialog(getActivity(), errorCode,
                REQUEST_ERROR, new DialogInterface.OnCancelListener() {
                    @Override
                    public void onCancel(DialogInterface dialog) {
                        getActivity().finish();
                    }
                });
        errorDialog.show();
    }
}
 
開發者ID:ivicel,項目名稱:Android-Programming-BigNerd,代碼行數:19,代碼來源:LocatrFragment.java

示例4: onResume

import com.google.android.gms.common.GoogleApiAvailability; //導入方法依賴的package包/類
@Override
public void onResume() {
    super.onResume();
    updateUI();
    
    //checking if Play Store app installed on device
    GoogleApiAvailability apiAvailability = GoogleApiAvailability.getInstance();
    int errorCode = apiAvailability.isGooglePlayServicesAvailable(getActivity());

    if (errorCode != ConnectionResult.SUCCESS) {
        Dialog errorDialog = apiAvailability
                .getErrorDialog(getActivity(), errorCode, REQUEST_ERROR,
                        new DialogInterface.OnCancelListener() {
                    @Override
                    public void onCancel(DialogInterface dialog) {
                        getActivity().finish();
                    }
                });
        errorDialog.show();
    }
}
 
開發者ID:plweegie,項目名稱:piast-trail,代碼行數:22,代碼來源:PlaceListFragment.java

示例5: onResume

import com.google.android.gms.common.GoogleApiAvailability; //導入方法依賴的package包/類
@Override
protected void onResume() {
    super.onResume();
    
    //checking if Play Store app installed on device
    GoogleApiAvailability apiAvailability = GoogleApiAvailability.getInstance();
    int errorCode = apiAvailability.isGooglePlayServicesAvailable(this);

    if (errorCode != ConnectionResult.SUCCESS) {
        Dialog errorDialog = apiAvailability
                .getErrorDialog(this, errorCode, REQUEST_ERROR,
                        new DialogInterface.OnCancelListener() {
                    @Override
                    public void onCancel(DialogInterface dialog) {
                        finish();
                    }
                });
        errorDialog.show();
    }
}
 
開發者ID:plweegie,項目名稱:piast-trail,代碼行數:21,代碼來源:PlaceDetailsActivity.java

示例6: showGooglePlayServicesAvailabilityErrorDialog

import com.google.android.gms.common.GoogleApiAvailability; //導入方法依賴的package包/類
/**
 * Display an error dialog showing that Google Play Services is missing
 * or out of date.
 *
 * @param connectionStatusCode code describing the presence (or lack of)
 *                             Google Play Services on this device.
 */
void showGooglePlayServicesAvailabilityErrorDialog(
        final int connectionStatusCode) {
    if (mProgress != null && mProgress.isShowing()) {
        mProgress.dismiss();
    }

    try {
        GoogleApiAvailability apiAvailability = GoogleApiAvailability.getInstance();
        Dialog dialog = apiAvailability.getErrorDialog(
                getActivity(),
                connectionStatusCode,
                ConstantValues.REQUEST_GOOGLE_PLAY_SERVICES);
        dialog.show();
    } catch (Exception e) {
        Utils.showNotReportableErrorDialog(getActivity(), e.getMessage(), "");
    }
}
 
開發者ID:mkeresztes,項目名稱:AndiCar,代碼行數:25,代碼來源:PreferenceActivity.java

示例7: 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

示例8: showGooglePlayServicesAvailabilityErrorDialog

import com.google.android.gms.common.GoogleApiAvailability; //導入方法依賴的package包/類
/**
 * Display an error dialog showing that Google Play Services is missing
 * or out of date.
 *
 * @param connectionStatusCode code describing the presence (or lack of)
 *                             Google Play Services on this device.
 */
private void showGooglePlayServicesAvailabilityErrorDialog(
        final int connectionStatusCode) {
    GoogleApiAvailability apiAvailability = GoogleApiAvailability.getInstance();
    Dialog dialog = apiAvailability.getErrorDialog(
            context,
            connectionStatusCode,
            REQUEST_GOOGLE_PLAY_SERVICES);
    dialog.show();
}
 
開發者ID:Pl4gue,項目名稱:homeworkManager-android,代碼行數:17,代碼來源:GetHomeworkPresenter.java

示例9: showGooglePlayServicesAvailabilityErrorDialog

import com.google.android.gms.common.GoogleApiAvailability; //導入方法依賴的package包/類
/**
 * Display an error dialog showing that Google Play Services is missing
 * or out of date.
 *
 * @param connectionStatusCode code describing the presence (or lack of)
 *                             Google Play Services on this device.
 */
private void showGooglePlayServicesAvailabilityErrorDialog(final int connectionStatusCode) {
    GoogleApiAvailability apiAvailability = GoogleApiAvailability.getInstance();
    Dialog dialog = apiAvailability.getErrorDialog(
            getActivity(),
            connectionStatusCode,
            REQUEST_GOOGLE_PLAY_SERVICES);
    dialog.show();
}
 
開發者ID:piskula,項目名稱:FuelUp,代碼行數:16,代碼來源:BackupFragment.java

示例10: showGooglePlayServicesAvailabilityErrorDialog

import com.google.android.gms.common.GoogleApiAvailability; //導入方法依賴的package包/類
private void showGooglePlayServicesAvailabilityErrorDialog(final int connectionStatusCode) {
    GoogleApiAvailability apiAvailability = GoogleApiAvailability.getInstance();
    Dialog dialog = apiAvailability.getErrorDialog(
            this,
            connectionStatusCode,
            REQUEST_GOOGLE_PLAY_SERVICES);
    dialog.show();
}
 
開發者ID:piskula,項目名稱:FuelUp,代碼行數:9,代碼來源:CheckPermissionsActivity.java

示例11: checkPlayServices

import com.google.android.gms.common.GoogleApiAvailability; //導入方法依賴的package包/類
private boolean checkPlayServices(){
	GoogleApiAvailability googleApiAvailability = GoogleApiAvailability.getInstance();
	int resultCode = googleApiAvailability.isGooglePlayServicesAvailable(mActivity);
	if(resultCode != ConnectionResult.SUCCESS) {
		if(googleApiAvailability.isUserResolvableError(resultCode)) {
			if(mErrorDialog == null) {
				mErrorDialog = googleApiAvailability.getErrorDialog(mActivity, resultCode, 2404);
				mErrorDialog.setCancelable(false);
			}
			if(!mErrorDialog.isShowing())
				mErrorDialog.show();
		}
	}
	return resultCode == ConnectionResult.SUCCESS;
}
 
開發者ID:Skullper,項目名稱:SimpleLocationGetter,代碼行數:16,代碼來源:SimpleLocationGetter.java

示例12: isGoogleServicesAvailable

import com.google.android.gms.common.GoogleApiAvailability; //導入方法依賴的package包/類
/**
 * Checks if google services are available
 * @return
 */
public boolean isGoogleServicesAvailable() {
    GoogleApiAvailability api = GoogleApiAvailability.getInstance();
    int isAvailable = api.isGooglePlayServicesAvailable(this);
    if (isAvailable == ConnectionResult.SUCCESS) {
        return Boolean.TRUE;
    } else if (api.isUserResolvableError(isAvailable)) {
        Dialog dialog = api.getErrorDialog(this, isAvailable, 0);
        dialog.show();
    } else {
        toastMe("Can't connect to play services!", this);
    }
    return Boolean.FALSE;
}
 
開發者ID:CMPUT301F17T17,項目名稱:Habitizer,代碼行數:18,代碼來源:DummyMainActivity.java

示例13: googleplayservice

import com.google.android.gms.common.GoogleApiAvailability; //導入方法依賴的package包/類
public boolean googleplayservice() {
    GoogleApiAvailability api = GoogleApiAvailability.getInstance();
    int isAvaible = api.isGooglePlayServicesAvailable(this);
    if (isAvaible == ConnectionResult.SUCCESS) {
        return true;
    } else if (api.isUserResolvableError(isAvaible)) {
        Dialog dialog = api.getErrorDialog(this, isAvaible, 0);
        dialog.show();
    } else {
        Toast.makeText(this, "Can't Connect to play services", Toast.LENGTH_LONG).show();
    }
    return false;
}
 
開發者ID:Francescopaolo44,項目名稱:MedicalMe,代碼行數:14,代碼來源:MapsActivity.java

示例14: showGooglePlayServicesAvailabilityErrorDialog

import com.google.android.gms.common.GoogleApiAvailability; //導入方法依賴的package包/類
/**
 * Display an error dialog showing that Google Play Services is missing
 * or out of date.
 *
 * @param connectionStatusCode code describing the presence (or lack of)
 *                             Google Play Services on this device.
 */
void showGooglePlayServicesAvailabilityErrorDialog(
        final int connectionStatusCode) {
    GoogleApiAvailability apiAvailability = GoogleApiAvailability.getInstance();
    Dialog dialog = apiAvailability.getErrorDialog(
            CheckupReminders.this,
            connectionStatusCode,
            REQUEST_GOOGLE_PLAY_SERVICES);
    dialog.show();
}
 
開發者ID:webianks,項目名稱:Crimson,代碼行數:17,代碼來源:CheckupReminders.java

示例15: showGooglePlayServicesAvailabilityErrorDialog

import com.google.android.gms.common.GoogleApiAvailability; //導入方法依賴的package包/類
void showGooglePlayServicesAvailabilityErrorDialog(
        final int connectionStatusCode) {
    GoogleApiAvailability apiAvailability = GoogleApiAvailability.getInstance();
    Dialog dialog = apiAvailability.getErrorDialog(
            ClockActivity.this,
            connectionStatusCode,
            REQUEST_GOOGLE_PLAY_SERVICES);
    dialog.show();
}
 
開發者ID:jcolladosp,項目名稱:ePills,代碼行數:10,代碼來源:ClockActivity.java


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