不想在蜂窝上查看 jpg?

发布于 11-18 13:02 字数 555 浏览 3 评论 0原文

下面是一些在手机上运行良好的代码:

Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setDataAndType(IMAGEURI, "image/jpg");
startActivity(intent);

在 Honeycomb(3.0 和 3.1)上会抛出这样的错误:

E/AndroidRuntime(25629): FATAL EXCEPTION: main
E/AndroidRuntime(25629): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=content://media/external/images/media/282 typ=image/jpg }

真的吗?有没有可以在蜂窝上查看jpg的应用程序?真的吗?有人能够在平板电脑上正确执行此操作吗?

Here's a bit of code which works fine on phones:

Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.setDataAndType(IMAGEURI, "image/jpg");
startActivity(intent);

which on Honeycomb (3.0 and 3.1) throws this:

E/AndroidRuntime(25629): FATAL EXCEPTION: main
E/AndroidRuntime(25629): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=content://media/external/images/media/282 typ=image/jpg }

Really? There's no application to view jpg on honeycomb? Really? Has anyone been able to do this properly on a tablet?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

抱着落日2024-11-25 13:02:21

JPEG 的 MIME 类型是image/jpeg。您有image/jpg

The MIME type for JPEG is image/jpeg. You have image/jpg.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文