java – Android 8或更高版本:检查Google Play服务

前端之家收集整理的这篇文章主要介绍了java – Android 8或更高版本:检查Google Play服务前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
方法保持返回0.根据开发者文档,如果设备获得最新版本的Google Play,此方法应该返回类似SUCCES的方法.有人知道如何使用这个吗?
@Override
    public void onResume() {
        super.onResume();

        GooglePlayServicesUtil.isGooglePlayServicesAvailable(getApplicationContext());
        System.out.println("henkie: " + GooglePlayServicesUtil.isGooglePlayServicesAvailable(getApplicationContext()));
    }

解决方法

它正在返回成功. documentation清楚地表示该方法有一个int返回类型,并返回一个

status code indicating whether there was an error. Can be one of
following in ConnectionResult: SUCCESS,SERVICE_MISSING,
SERVICE_VERSION_UPDATE_required,SERVICE_DISABLED,SERVICE_INVALID.

要检查所返回的内容,请使用以下内容

int status = GooglePlayServicesUtil.isGooglePlayServicesAvailable(getApplicationContext());
if(status == ConnectionResult.SUCCESS) {
    //Success! Do what you want
}
原文链接:https://www.f2er.com/java/122309.html

猜你在找的Java相关文章