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 ビューを有効にできませんでした!
どうすればインテントを変更できますか? ありがとう。