我将显示 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 视图!
我该如何修改意图?谢谢。