匿名用户

请按照DCOMING检查设备是否有可用的谷歌播放服务。

简而言之,简单地说:

// Getting status
int status = GooglePlayServicesUtil.isGooglePlayServicesAvailable(getBaseContext());

// Showing status
if(status==ConnectionResult.SUCCESS)
//Google Play Services are available
else{
//Google Play Services are not available
}

希望这对您有所帮助:)