本文整理汇总了Java中com.google.android.gms.common.GoogleApiAvailability.getInstance方法的典型用法代码示例。如果您正苦于以下问题:Java GoogleApiAvailability.getInstance方法的具体用法?Java GoogleApiAvailability.getInstance怎么用?Java GoogleApiAvailability.getInstance使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.google.android.gms.common.GoogleApiAvailability
的用法示例。
在下文中一共展示了GoogleApiAvailability.getInstance方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: checkPlayServices
import com.google.android.gms.common.GoogleApiAvailability; //导入方法依赖的package包/类
@SuppressLint("LongLogTag")
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;
}
示例2: 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;
}
示例3: 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 static boolean checkPlayServices(AppCompatActivity activity, int PLAY_SERVICES_RESOLUTION_REQUEST) {
GoogleApiAvailability apiAvailability = GoogleApiAvailability.getInstance();
int resultCode = apiAvailability.isGooglePlayServicesAvailable(activity);
if (resultCode != ConnectionResult.SUCCESS) {
if (apiAvailability.isUserResolvableError(resultCode)) {
apiAvailability.getErrorDialog(activity, resultCode, PLAY_SERVICES_RESOLUTION_REQUEST)
.show();
} else {
MaterialDialog dialog = new MaterialDialog.Builder(activity)
.content("This device is not supported.")
.show();
}
return false;
}
return true;
}
示例4: 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();
}
}
示例5: 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;
}
示例6: 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();
}
}
示例7: 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;
}
示例8: isGooglePlayServicesAvailable
import com.google.android.gms.common.GoogleApiAvailability; //导入方法依赖的package包/类
/**
* Check that Google Play services APK is installed and up to date.
* @return true if Google Play Services is available and up to date on this device, false otherwise.
*/
public static boolean isGooglePlayServicesAvailable(Context context) {
GoogleApiAvailability apiAvailability =
GoogleApiAvailability.getInstance();
final int connectionStatusCode =
apiAvailability.isGooglePlayServicesAvailable(context);
return connectionStatusCode == ConnectionResult.SUCCESS;
}
示例9: 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);
}
}
示例10: CheckGooglePlayServices
import com.google.android.gms.common.GoogleApiAvailability; //导入方法依赖的package包/类
private boolean CheckGooglePlayServices() {
GoogleApiAvailability googleAPI = GoogleApiAvailability.getInstance();
int result = googleAPI.isGooglePlayServicesAvailable(this);
if(result != ConnectionResult.SUCCESS) {
if(googleAPI.isUserResolvableError(result)) {
googleAPI.getErrorDialog(this, result,
0).show();
}
return false;
}
return true;
}
示例11: isGooglePlayServicesAvailable
import com.google.android.gms.common.GoogleApiAvailability; //导入方法依赖的package包/类
/**
* Method to check if google play services are enabled or not
*
* @return boolean status
*/
public boolean isGooglePlayServicesAvailable() {
GoogleApiAvailability googleApiAvailability = GoogleApiAvailability.getInstance();
int status = googleApiAvailability.isGooglePlayServicesAvailable(this);
if (status != ConnectionResult.SUCCESS) {
if (googleApiAvailability.isUserResolvableError(status)) {
googleApiAvailability.getErrorDialog(this, status, 2404).show();
}
return false;
}
return true;
}
示例12: isGooglePlayServicesAvailable
import com.google.android.gms.common.GoogleApiAvailability; //导入方法依赖的package包/类
/**
* Check that Google Play services APK is installed and up to date.
*
* @return true if Google Play Services is available and up to
* date on this device; false otherwise.
*/
private boolean isGooglePlayServicesAvailable() {
GoogleApiAvailability apiAvailability =
GoogleApiAvailability.getInstance();
final int connectionStatusCode =
apiAvailability.isGooglePlayServicesAvailable(context);
return connectionStatusCode == ConnectionResult.SUCCESS;
}
示例13: 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(getContext());
if (apiAvailability.isUserResolvableError(connectionStatusCode)) {
showGooglePlayServicesAvailabilityErrorDialog(connectionStatusCode);
}
}
示例14: isGooglePlayServicesAvailable
import com.google.android.gms.common.GoogleApiAvailability; //导入方法依赖的package包/类
/**
* Check that Google Play services APK is installed and up to date.
*
* @return true if Google Play Services is available and up to
* date on this device; false otherwise.
*/
private boolean isGooglePlayServicesAvailable() {
GoogleApiAvailability apiAvailability =
GoogleApiAvailability.getInstance();
final int connectionStatusCode =
apiAvailability.isGooglePlayServicesAvailable(getActivity());
return connectionStatusCode == ConnectionResult.SUCCESS;
}
示例15: checkPlayServices
import com.google.android.gms.common.GoogleApiAvailability; //导入方法依赖的package包/类
/**
* Function to check google play services
*
* @return Found or not
*/
private boolean checkPlayServices() {
GoogleApiAvailability googleAPI = GoogleApiAvailability.getInstance();
int result = googleAPI.isGooglePlayServicesAvailable(context);
if (result != ConnectionResult.SUCCESS) {
if (googleAPI.isUserResolvableError(result)) {
googleAPI.getErrorDialog((Activity) context, result,
1).show();
}
return false;
}
return true;
}