0

我将显示 Photo Spheres(Android 4.2 中的 3D 图像)!

我已阅读http://android-developers.blogspot.de/2012/12/new-google-maps-android-api-now-part-of.html。但我无法使用它。我的应用程序中有以下意图:

if (url.contains(".jpg")) {
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse(url), "image/*");
startActivity(intent);
} else { ...

因此,图像也显示在 Android <4.2 的设备上。但在 Android >=4.2 上显示图像但我无法激活 Photo Sphere 视图!

我该如何修改意图?谢谢。

4

1 回答 1

0

要在 Android 上显示 Photo Sphere,您可以使用 Google Play 服务中的 PanoramaClient API。文档在这里:http: //developer.android.com/reference/com/google/android/gms/panorama/PanoramaClient.html

您可以查看我们去年的博文,了解如何使用它的示例: http ://android-developers.blogspot.com/2012/12/new-google-maps-android-api-now-part-of .html

于 2013-06-26T17:26:52.420 回答