如何在我的应用中加载Photosphere?

时间:2013-05-08 14:21:17

标签: android photosphere

两天前我提出了这个问题,ianhanniballake用正确的解决方案回答了我。现在,我正在尝试关注this示例。

现在,它没有加载图像。

我换了一行:

Uri.parse("android.resource://" + getPackageName() + "/" + R.raw.pano1);

为该行:

Uri.parse("http://s24.postimg.org/d81cxh2sl/pano1.jpg".toString());

它有什么用?

1 个答案:

答案 0 :(得分:2)

查看Android SDK,您无法为该URI使用http资源:

  

要加载信息的全景图的URI。可以是文件:,content:或android_resource:scheme。

因此,您需要首先下载图像,然后才能处理它。请查看this链接以获取相关教程。