gpt4 book ai didi

android - 与 GooglePlayServicesUtil 的奇怪对话

转载 作者:太空狗 更新时间:2023-10-29 15:29:08 26 4
gpt4 key购买 nike

我正在检查设备上 google play 服务的可用性。我用这些代码来做:

final int resultCode = GooglePlayServicesUtil.isGooglePlayServicesAvailable(this);
if (resultCode != ConnectionResult.SUCCESS) {
final DialogInterface.OnCancelListener cancelListener = new DialogInterface.OnCancelListener() {
@Override
public void onCancel(final DialogInterface dialog) {
finish();
}
};
final Dialog errorDialog = GooglePlayServicesUtil.getErrorDialog(
resultCode, this, GOOGLE_PLAY_SERVICES_REQUEST_CODE, cancelListener
);
errorDialog.show();
}

我得到 resultCode = 2(这意味着 Google Play 服务需要更新)。显示对话框,但不是文本,而是布局路径。

enter image description here

看起来应用程序中的资源和 PlaYServices 库中的资源有一些干扰。但是这怎么可能以及如何避免 id?

最佳答案

由于接受的答案有些不清楚,我会留下一个路标,其中包含我认为正确的结论(大部分摘自对问题的评论)。

简短版本:似乎为此应用生成的资源 ID 不正确。

很明显,Google Play 服务对话框旨在在这些地方显示字符串。 getErrorDialog()方法是这样实现的(混淆了,但意思还是能看懂):

...
case 1:
return localBuilder.setTitle(R.string.common_google_play_services_install_title).create();
case 3:
return localBuilder.setTitle(R.string.common_google_play_services_enable_title).create();
case 2:
return localBuilder.setTitle(R.string.common_google_play_services_update_title).create();
...

此外,错误地执行类似 getResources().getString(R.layout.my_layout) 的操作将返回一个带有原始资源文件名称的字符串 ("res/layout/my_layout .xml”)。

因此,我们可以得出结论,出于某种原因,Play 服务库资源的值,例如 com.google.android.gms.R.string.common_google_play_services_install_title 实际上与对于应用程序项目中的资源 R.layout.dialog_share

这可能是因为构建过程不正确,或者对 Google Play 服务库的使用不正确(例如,直接包含其 jar,而没有相应的库过程)。

关于android - 与 GooglePlayServicesUtil 的奇怪对话,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24449814/

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