我看到google有一个用于将Google Cardboard panaromas嵌入到具有VrPanoramaView的应用程序中的API,但我正在寻找一个xml视图,以便从Google Camera应用程序正确处理谷歌自己的PhotoSphere图像。我不希望它外部加载photosphere查看器,但在app中查看,就像使用imageview一样。有处理这个的看法吗?
答案 0 :(得分:1)
VrPanoramaView确实处理Googles photosphere。但是,需要正确设置选项。对于photosphere使用:
imageView = (VrPanoramaView) v.findViewById(R.id.uploadPictureView);
VrPanoramaView.Options options = new VrPanoramaView.Options();
options.inputType = VrPanoramaView.Options.TYPE_MONO;
imageView.loadImageFromBitmap(image, options);