Android - 通过Intent

时间:2015-11-20 15:55:48

标签: android android-intent google-play-services

由于我在我的应用程序中使用GPS并且正在使用Google Play服务,因此我始终会检查它们是否是最新的。有没有办法让用户更容易更新它?像一种互联网? 我已经代码检查服务是否是最新的,如果不是,则弹出一条消息,我只是想让用户无需担心。 先谢谢=)

Q

1 个答案:

答案 0 :(得分:2)

  

我总是检查它们是否是最新的。有没有办法让它变得简单   给用户更新它

SERVICE_VERSION_UPDATE_REQUIRED常量可用,当{em>已安装的Google Play服务版本已过期时,GooglePlayServicesUtil.isGooglePlayServicesAvailable会返回

使用SERVICE_VERSION_UPDATE_REQUIRED常量值显示错误提醒,使用GooglePlayServicesUtil.getErrorDialog请求用户更新可用服务版本:

int responseCode = GooglePlayServicesUtil.isGooglePlayServicesAvailable(activity);
Dialog dialog = GooglePlayServicesUtil.getErrorDialog(responseCode, activity, 0);