gpt4 book ai didi

java - 不要显示 "This app won' t run without google play services”对话框

转载 作者:行者123 更新时间:2023-11-30 10:48:39 24 4
gpt4 key购买 nike

我在我的应用程序中使用了 Google Play 服务,但没有必要运行它。但是,当设备没有 Google Play 服务时,它会显示一个对话框,其中显示:如果没有 Google Play 服务,此应用将无法运行。

问题是,我可以更改此文本吗?我找不到。

我的代码:

private boolean checkPlayServices() {
GoogleApiAvailability apiAvailability = GoogleApiAvailability.getInstance();
int resultCode = apiAvailability.isGooglePlayServicesAvailable(this);
if (resultCode != ConnectionResult.SUCCESS) {
if (apiAvailability.isUserResolvableError(resultCode)) {
apiAvailability.getErrorDialog(this, resultCode,
PLAY_SERVICES_RESOLUTION_REQUEST).show();
} else {
Log.i(TAG, "This device is not supported.");
finish();
}
return false;
}
return true;
}

最佳答案

我猜你可以只显示自定义对话框而不是 apiAvailability.getErrorDialog(this, resultCode, PLAY_SERVICES_RESOLUTION_REQUEST).show();

关于java - 不要显示 "This app won' t run without google play services”对话框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35722800/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com