我的应用程序中有 Googles PanoramaAPI 的工作实现。不幸的是,该实现在 Android 11 上停止运行。
实现如下所示:
Uri uri = Uri.fromFile(file);
Panorama.PanoramaApi.loadPanoramaInfoAndGrantAccess(mClient, uri).setResultCallback(
new ResultCallback<PanoramaResult>() {
@Override
public void onResult(PanoramaResult result) {
if (result.getStatus().isSuccess()) {
Intent viewerIntent = result.getViewerIntent();
Log.i(TAG, "found viewerIntent: " + viewerIntent);
if (viewerIntent != null) {
startActivity(viewerIntent);
finish();
}
} else {
Log.e(TAG, "error: " + result);
}
}
});
以下情况:
- 当我在智能手机上制作全景图像并将其加载到给定的实现中时,它就可以工作了。从中加载图像
/storage/emulated/0/DCIM/Camera/*.jpg
,全景视图显示没有问题。 - 当我在服务器上上传相同的图像并通过应用程序下载时,图像会存储在
/storage/emulated/0/Android/data/<applicationId>/files/*.jpg
. 不幸的是,全景视图无法加载图像并且viewerIntent
总是null
。
对我来说,这看起来像是 Android 11 上的权限问题,但我不知道如何解决。我不想将图像下载到手机的更公共区域。有谁知道如何解决它?